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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
}

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

.top-bar {
    background-color: #6b4c9a;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b4c9a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b4c9a;
}

.nav-btn {
    background-color: #f5c518;
    color: #2d2d2d;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0eef5 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2d2d2d;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #6b4c9a;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(107, 76, 154, 0.3);
}

.btn-cta:hover {
    background-color: #5a3d85;
    transform: translateY(-2px);
}

.btn-cta-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
}

.section {
    padding: 70px 20px;
}

.section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.areas {
    background-color: #fafafa;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #6b4c9a;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6b4c9a;
}

.card p {
    color: #555;
}

.path {
    background-color: #ffffff;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.timeline-number {
    width: 45px;
    height: 45px;
    background-color: #f5c518;
    color: #2d2d2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2d2d2d;
}

.timeline-content p {
    color: #555;
    font-size: 0.95rem;
}

.path-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

.situations {
    background-color: #f8f8f8;
}

.situation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.situation-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.situation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #6b4c9a;
}

.situation-card p {
    color: #555;
}

.situations-note {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.values {
    background-color: #ffffff;
}

.values-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 30px;
}

.values-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: #f0eef5;
    border-radius: 8px;
    position: relative;
    padding-left: 45px;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #6b4c9a;
    font-weight: 700;
}

.values-note {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.faq {
    background-color: #fafafa;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.faq-item p {
    color: #555;
}

.cta-final {
    background: linear-gradient(135deg, #6b4c9a 0%, #8b6bb5 100%);
    color: #ffffff;
    text-align: center;
}

.cta-final h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-final p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-final .btn-cta {
    background-color: #f5c518;
    color: #2d2d2d;
}

.cta-final .btn-cta:hover {
    background-color: #e0b000;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

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

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

.footer-links a {
    color: #f5c518;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    font-size: 0.9rem;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 600px;
}

.cookie-btn {
    background-color: #f5c518;
    color: #2d2d2d;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn:hover {
    background-color: #e0b000;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

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

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

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