:root {
    --primary: #2c3e50;
    --secondary: #8e44ad;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --border: #ddd;
    --shadow: rgba(0,0,0,0.1);
    --card-bg: #f5f0eb;
    --section-alt: #faf8f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: var(--light);
    padding: 8px 15px;
    font-size: 0.75rem;
    color: var(--text-light);
    border-radius: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-editorial {
    padding: 80px 20px;
    background-color: var(--card-bg);
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.hero-editorial .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #d4ccc4;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 60px 20px;
}

.article-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    color: var(--dark);
    font-weight: 400;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.inline-image {
    margin: 40px 0;
    background-color: #d4ccc4;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    background: var(--light);
}

.quote-block {
    border-left: 4px solid var(--secondary);
    padding: 30px 40px;
    margin: 50px 0;
    background: var(--section-alt);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
}

.quote-block cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

.cta-inline {
    background: var(--secondary);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: center;
}

.cta-inline h3 {
    color: var(--white);
    margin: 0 0 15px;
    font-size: 1.5rem;
}

.cta-inline p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    background: #c0392b;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.services-section {
    background: var(--section-alt);
    padding: 80px 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 400;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 320px;
    box-shadow: 0 5px 20px var(--shadow);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--dark);
    color: var(--white);
}

.testimonial-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 280px;
    max-width: 320px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
}

.form-section {
    padding: 80px 20px;
    background: var(--card-bg);
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 400;
}

.form-section .intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.about-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--section-alt) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 20px;
}

.about-content {
    padding: 60px 20px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 300px;
    background-color: #d4ccc4;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.page-header {
    padding: 80px 20px 40px;
    background: var(--card-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 400;
}

.page-content {
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.page-content p,
.page-content li {
    margin-bottom: 15px;
    color: var(--text);
}

.page-content ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 60px 20px;
    background: var(--section-alt);
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    flex: 1 1 200px;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-info-item p {
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--white) 100%);
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 30px;
}

.services-list-page {
    padding: 60px 20px;
}

.services-list-page .services-grid {
    max-width: 1100px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.disclaimer {
    background: var(--light);
    padding: 30px 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
}

.disclaimer p {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.cookie-inner p {
    flex: 1 1 400px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-inner a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.features-section {
    padding: 80px 20px;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 400;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-image-wrapper img {
        height: 300px;
    }

    .inline-image img {
        height: 250px;
    }

    .quote-block {
        padding: 20px;
        font-size: 1.1rem;
    }

    .about-grid {
        flex-direction: column;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}
