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

:root {
    --navy: #1a237e;
    --navy-dark: #0d1452;
    --light-purple: #7c4dff;
    --light-purple-soft: #b388ff;
    --yellow: #ffd600;
    --yellow-light: #ffea00;
    --white: #ffffff;
    --gray-light: #f5f5f7;
    --gray: #666666;
    --text-dark: #1a1a2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    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;
}

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

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

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

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

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

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

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

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
}

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-list {
    list-style: none;
    margin-bottom: 40px;
}

.hero-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}

.section {
    padding: 80px 0;
}

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

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

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

.text-content p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.help-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.help-image img {
    width: 100%;
    border-radius: 12px;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--light-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
}

.benefit-icon {
    color: var(--light-purple);
    font-size: 1.5rem;
}

.benefit-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.benefits-image img {
    width: 100%;
    border-radius: 12px;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--light-purple);
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
}

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

.cta {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--navy) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.75rem;
}

.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--light-purple-soft);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

    .hero-image {
        order: -1;
    }

    .hero-list li {
        text-align: left;
    }

    .help-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .help-cards {
        order: 1;
    }

    .help-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        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;
    }

    .btn-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .help-cards {
        grid-template-columns: 1fr;
    }

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