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

:root {
    --purple: #6B4E9B;
    --purple-dark: #4A3570;
    --purple-light: #8B6EBB;
    --yellow: #F5C842;
    --yellow-light: #FFF3C4;
    --white: #FFFFFF;
    --gray-light: #F8F8FA;
    --gray: #E8E8EC;
    --text-dark: #2D2D3A;
    --text-medium: #5A5A6E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: var(--purple);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-nav {
    background: var(--purple);
    color: var(--white);
    padding: 10px 20px;
}

.btn-nav:hover {
    background: var(--purple-dark);
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    border-radius: 50%;
    position: relative;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--yellow);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--yellow-light);
    border-radius: 50%;
    bottom: 20px;
    left: -30px;
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--gray-light);
}

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

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.area-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--purple);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.area-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.area-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.areas-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--purple);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.section-cta {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    text-align: center;
}

.section-cta h2 {
    color: var(--white);
    font-size: 1.8rem;
}

.section-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-cta .btn-primary {
    background: var(--yellow);
    color: var(--text-dark);
}

.section-cta .btn-primary:hover {
    background: #E5B832;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 20px;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

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

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

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content .btn-small {
    background: var(--yellow);
    color: var(--text-dark);
    white-space: nowrap;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic::before {
        width: 70px;
        height: 70px;
    }

    .hero-graphic::after {
        width: 40px;
        height: 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

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

    .section-cta h2 {
        font-size: 1.4rem;
    }
}
