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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>') repeat;
    opacity: 0.4;
}

.hero-overlay {
    max-width: 800px;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 36px;
}

.cta-primary {
    background: #fff;
    color: #667eea;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.intro-cards {
    max-width: 1400px;
    margin: -60px auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.story-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.programs-preview {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.programs-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.program-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.program-header h3 {
    font-size: 22px;
    color: #2c3e50;
    flex: 1;
}

.price-tag {
    background: #27ae60;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.program-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    margin-bottom: 24px;
}

.program-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 24px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-select-service {
    background: #3498db;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.testimonial-cards {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background: #f1f3f5;
}

.testimonial-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.quote {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #667eea;
    font-size: 14px;
}

.enrollment-card {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.enrollment-content {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 48px 40px;
    border-radius: 16px;
    color: #fff;
}

.enrollment-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.enrollment-content > p {
    text-align: center;
    margin-bottom: 32px;
    font-size: 17px;
}

.enrollment-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.btn-submit {
    width: 100%;
    background: #2c3e50;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
}

.value-props {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.props-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.prop-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 28px 24px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.prop-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.prop-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    background: #e74c3c;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.5);
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-weight: 600;
    color: #3498db;
}

.btn-back-home {
    background: #3498db;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .card-grid {
        flex-direction: column;
    }

    .programs-grid {
        flex-direction: column;
    }

    .program-card {
        max-width: 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .props-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}
