* {
    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-color: #fff;
}

.ad-notice {
    background-color: #fef9e7;
    color: #7d6608;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f4e5a1;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 4px 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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a7b;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2d5a7b;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d5a7b;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #234a62;
}

.cta-secondary {
    display: inline-block;
    background-color: #f5f5f5;
    color: #2d5a7b;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-cards {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.card-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.info-card {
    flex: 2;
    padding: 40px;
    border-radius: 8px;
}

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

.info-card p {
    font-size: 17px;
    color: #555;
}

.stat-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5a7b;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.courses-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

.course-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

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

.course-details {
    padding: 30px;
}

.course-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.course-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a7b;
}

.select-course {
    width: 100%;
    background-color: #2d5a7b;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-course:hover {
    background-color: #234a62;
}

.enrollment-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a7b;
}

.testimonial-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
}

.location-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.location-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2d5a7b;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #234a62;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

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

.page-header {
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
}

.about-intro {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.principles-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

.principle-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    border-radius: 8px;
}

.principle-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.principle-card p {
    font-size: 16px;
    color: #555;
}

.team-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.approach-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.approach-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.values-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.services-intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.intro-content {
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    color: #555;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.service-description h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-description p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-description li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.service-pricing {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2d5a7b;
    margin-bottom: 5px;
}

.price-detail {
    font-size: 14px;
    color: #777;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

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

.enrollment-cta {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-layout {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a7b;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.directions-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.directions-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.directions-grid {
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5a7b;
}

.direction-item p {
    font-size: 16px;
    color: #555;
}

.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

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

.thanks-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-details ul {
    margin-left: 20px;
}

.thanks-details li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.thanks-note {
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 4px;
    margin-bottom: 30px;
}

.thanks-note p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5a7b;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-content a {
    color: #2d5a7b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234a62;
}

.legal-content strong {
    color: #1a1a1a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

    .hero-card,
    .card-wrapper,
    .location-section,
    .content-wrapper,
    .approach-wrapper,
    .service-item,
    .contact-layout,
    .directions-grid,
    .testimonial-section {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

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

    .courses-section h2 {
        font-size: 32px;
    }

    .course-card {
        flex: 1 1 100%;
    }

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

    .principle-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1 1 calc(50% - 20px);
    }
}
