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

:root {
    --yellow: #F5B041;
    --yellow-light: #FCE8C7;
    --purple: #5B2C6F;
    --purple-light: #8E44AD;
    --white: #FFFFFF;
    --graphite: #2C3E50;
    --graphite-light: #34495E;
    --gray-light: #F8F9FA;
}

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

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

.nav {
    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;
    align-items: center;
    justify-content: space-between;
}

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

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

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

.nav-menu a:hover {
    color: var(--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(--yellow);
    color: var(--graphite);
}

.btn-nav:hover {
    background: #E09E2B;
}

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

.btn-primary:hover {
    background: var(--purple-light);
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--graphite);
    border-radius: 2px;
    transition: 0.3s;
}

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

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

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.hero-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--graphite-light);
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section {
    padding: 80px 20px;
}

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

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

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

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

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

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

.teaching-block {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.teaching-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.teaching-block h3 {
    color: var(--purple);
    margin-bottom: 8px;
}

.teaching-block p {
    color: var(--graphite-light);
}

.teaching-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 32px 20px;
    background: var(--yellow-light);
    border-radius: 16px;
    transition: transform 0.3s;
}

.benefit:hover {
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.benefit p {
    font-weight: 600;
    color: var(--graphite);
}

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

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

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

.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-question:hover {
    background: var(--gray-light);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--graphite-light);
}

.faq-answer a {
    color: var(--purple);
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 32px;
}

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

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

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

.footer p {
    margin-bottom: 16px;
    opacity: 0.9;
}

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

.footer-links a {
    color: var(--yellow);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-nav {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .teaching-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .teaching-image {
        order: -1;
    }
    
    .cards-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
}
