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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #059669;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #047857;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.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 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

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

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

.nav-links a:hover {
    color: #1e40af;
}

.ad-notice {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.hero-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 20px;
    color: #ffffff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

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

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

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ea580c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c2410c;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 60px 20px;
    background-color: #f9fafb;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

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

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

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

.featured-courses {
    padding: 80px 20px;
    background-color: #ffffff;
}

.featured-courses h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.course-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    border-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.15);
}

.course-card.selected {
    border-color: #059669;
    background-color: #f0fdf4;
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-details {
    padding: 24px;
}

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

.course-details p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1e3a8a;
}

.course-card.selected .btn-select {
    background-color: #059669;
}

.course-card.selected .btn-select:hover {
    background-color: #047857;
}

.enrollment-form {
    padding: 80px 20px;
    background-color: #f3f4f6;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

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

.form-card p {
    color: #6b7280;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
}

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

.btn-submit:hover {
    background-color: #c2410c;
}

.why-choose {
    padding: 80px 20px;
    background-color: #ffffff;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
}

.split-text p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 17px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.testimonial-card p {
    color: #374151;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1e40af;
    font-style: normal;
}

.final-cta {
    padding: 80px 20px;
    background-color: #1f2937;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1e40af;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f3f4f6;
}

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

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

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

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

.footer-column p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.content-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-card {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-card.reverse {
    flex-direction: row-reverse;
}

.about-card img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
}

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

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

.location-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.location-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f3f4f6;
    padding: 40px;
    border-radius: 16px;
}

.location-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

.location-card p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 17px;
}

.services-grid {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.service-cards-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-wrap: wrap;
}

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

.service-image-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #e5e7eb;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 16px;
}

.service-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

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

.service-duration {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
}

.btn-enroll {
    display: inline-block;
    padding: 12px 32px;
    background-color: #1e40af;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background-color: #1e3a8a;
}

.enrollment-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f0f9ff;
    padding: 50px;
    border-radius: 16px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1f2937;
}

.cta-box p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1e40af;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e3a8a;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1e40af;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #1e40af;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.contact-information {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1e40af;
}

.contact-detail p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-top: 12px;
}

.directions-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.directions-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 16px;
}

.directions-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1f2937;
}

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

.transport-list {
    list-style: none;
    margin-bottom: 20px;
}

.transport-list li {
    padding: 10px 0;
    color: #374151;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f9fafb;
    min-height: 70vh;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #059669;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

.thanks-details {
    text-align: left;
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-details p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 12px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1f2937;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding: 12px 0;
    color: #374151;
    position: relative;
    padding-left: 32px;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-updated {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #374151;
}

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

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

.legal-content ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #1e40af;
    text-decoration: none;
}

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

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

    .ad-notice {
        flex-basis: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

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

    .featured-courses h2,
    .testimonials h2,
    .values-section h2 {
        font-size: 32px;
    }

    .about-card,
    .about-card.reverse {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .form-card {
        padding: 30px 20px;
    }

    .thanks-card {
        padding: 40px 24px;
    }
}