* {
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #6b46c1;
    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: #6b46c1;
}

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

.nav-cta:hover {
    background-color: #f59e0b;
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #6b46c1;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #553c9a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

.areas {
    padding: 80px 20px;
    background-color: #ffffff;
}

.areas h2 {
    text-align: center;
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 50px;
}

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

.card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.card h3 {
    color: #6b46c1;
    font-size: 22px;
    margin-bottom: 15px;
}

.card p {
    color: #4a4a4a;
    font-size: 16px;
}

.path {
    padding: 80px 20px;
    background-color: #f8f7fc;
}

.path h2 {
    text-align: center;
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.path-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 50px;
}

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

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

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: #6b46c1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #4a4a4a;
    font-size: 15px;
}

.situations {
    padding: 80px 20px;
    background-color: #ffffff;
}

.situations h2 {
    text-align: center;
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.situations-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.situation-block {
    background-color: #fefce8;
    border-left: 4px solid #fbbf24;
    padding: 25px;
    border-radius: 0 12px 12px 0;
}

.situation-block h3 {
    color: #2d2d2d;
    font-size: 18px;
    margin-bottom: 10px;
}

.situation-block p {
    color: #4a4a4a;
    font-size: 15px;
}

.testimonials {
    padding: 80px 20px;
    background-color: #f8f7fc;
}

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

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

.testimonial-list li {
    background-color: #ffffff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 50px;
}

.testimonial-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: #6b46c1;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    font-style: italic;
}

.faq {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 50px;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #6b46c1;
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a4a4a;
    font-size: 16px;
}

.cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    text-align: center;
}

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

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

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

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

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

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

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

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

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

.footer-contact a {
    color: #fbbf24;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.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: 9999;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

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

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

@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: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .areas h2,
    .path h2,
    .situations h2,
    .testimonials h2,
    .faq h2 {
        font-size: 26px;
    }

    .cta-final h2 {
        font-size: 28px;
    }

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

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