* {
    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: #1e293b;
    background-color: #f8fafc;
}

.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-button {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #d97706;
}

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

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.intro-section p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

.programs-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1e293b;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.program-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.card-content p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.duration {
    font-size: 14px;
    color: #64748b;
}

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

.select-service {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 15px;
}

.select-service:hover {
    background-color: #1e40af;
}

.value-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.value-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1e293b;
}

.value-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.value-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.enrollment-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.enrollment-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.enrollment-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1e293b;
    text-align: center;
}

.enrollment-card > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 36px;
    font-size: 16px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
    font-size: 15px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

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

.submit-button {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 12px;
}

.submit-button:hover {
    background-color: #1e40af;
}

.disclaimer-section {
    padding: 48px 0;
    background-color: #fef3c7;
}

.disclaimer {
    font-size: 13px;
    color: #78350f;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 24px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    color: #94a3b8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e40af;
}

.cookie-reject {
    background-color: #475569;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #334155;
}

.page-header {
    background-color: #2563eb;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.approach-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.approach-cards {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.approach-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.approach-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1e293b;
}

.values-section p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.services-detail {
    padding: 80px 0;
}

.service-card-detailed {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-desc {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #64748b;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
}

.enrollment-cta {
    padding: 80px 0;
    background-color: #2563eb;
    text-align: center;
    color: #ffffff;
}

.enrollment-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.enrollment-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 32px;
    color: #1e293b;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.contact-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.contact-disclaimer {
    padding: 60px 0;
    background-color: #f8fafc;
}

.contact-disclaimer p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    text-align: center;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #1e293b;
}

.updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

#selectedService {
    font-weight: 600;
    color: #2563eb;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .program-card {
        width: 100%;
    }

    .value-grid,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .value-image,
    .about-image,
    .contact-image {
        height: 300px;
    }

    .approach-cards {
        flex-direction: column;
    }

    .service-card-detailed {
        flex-direction: column;
    }

    .service-card-detailed:nth-child(even) {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}