* {
    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: #333;
    background: #f9fafb;
}

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.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: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background: #10b981;
    color: #fff;
}

.btn-accept:hover {
    background: #059669;
}

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

.btn-reject:hover {
    border-color: #9ca3af;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.ad-notice {
    padding: 6px 12px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.hero-section {
    padding: 40px 20px;
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #e5e7eb;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    padding: 60px 40px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
}

.intro-cards {
    padding: 80px 20px;
    background: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    line-height: 1.7;
}

.featured-programs {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

.program-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.program-image {
    width: 40%;
    min-height: 280px;
    background: #e5e7eb;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.program-details {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.program-details h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 12px;
}

.program-details > p {
    color: #6b7280;
    margin-bottom: 20px;
    flex: 1;
}

.program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.program-meta span {
    padding: 6px 12px;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-program-btn {
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.select-program-btn:hover {
    background: #1d4ed8;
}

.enrollment-section {
    padding: 80px 20px;
    background: #fff;
}

.enrollment-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f9fafb;
    border-radius: 16px;
    padding: 50px;
    border: 2px solid #e5e7eb;
}

.enrollment-content {
    margin-bottom: 40px;
    text-align: center;
}

.enrollment-content h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 12px;
}

.enrollment-content p {
    color: #6b7280;
    font-size: 16px;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background: #f3f4f6;
    color: #1f2937;
}

.submit-btn {
    padding: 14px 32px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #059669;
}

.testimonial-cards {
    padding: 80px 20px;
    background: #1f2937;
    color: #fff;
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #374151;
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #fff;
}

.testimonial-author span {
    color: #9ca3af;
    font-size: 14px;
}

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom > p:last-child {
    font-size: 14px;
    color: #6b7280;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-card {
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #10b981;
}

.thanks-card h1 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 16px;
}

.thanks-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.selected-program-info {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.selected-program-info strong {
    color: #1f2937;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.selected-program-info p {
    color: #2563eb;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.content-page {
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.content-wrapper h1 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 24px;
}

.content-wrapper h2 {
    font-size: 24px;
    color: #1f2937;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-wrapper p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-wrapper ul, .content-wrapper ol {
    margin-left: 24px;
    margin-bottom: 16px;
    color: #4b5563;
}

.content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.contact-info-card h2 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 0;
}

.contact-info-card p {
    color: #6b7280;
    margin-bottom: 8px;
}

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

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

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

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

    .program-image {
        width: 100%;
        height: 250px;
    }

    .footer-grid {
        gap: 30px;
    }

    .enrollment-card {
        padding: 30px;
    }

    .content-wrapper {
        padding: 30px;
    }
}