* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.main-header {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #e1e8ed;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #5dade2;
}

.ad-notice {
    font-size: 12px;
    color: #95a5a6;
    background-color: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 4px;
}

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

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,35,50,0.85), rgba(52,73,94,0.75));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3498db;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.info-card p {
    margin: 0 25px 25px;
    color: #5d6d7e;
    font-size: 15px;
    line-height: 1.7;
}

.mission-statement {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-statement h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a2332;
}

.mission-statement p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.courses-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.courses-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.course-item {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.course-visual {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
}

.course-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.course-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #5d6d7e;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
    display: block;
}

.btn-select {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

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

.enrollment-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a2332;
}

.form-intro p {
    font-size: 16px;
    color: #5d6d7e;
}

.enrollment-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.selected-course-display {
    background-color: #d5f4e6;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-course-display.empty {
    background-color: #f8f9fa;
    border-left-color: #95a5a6;
}

.selected-course-display p {
    margin: 0;
    color: #1a2332;
    font-weight: 600;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

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

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

.testimonial-section blockquote {
    background-color: #f8f9fa;
    padding: 35px;
    border-left: 5px solid #3498db;
    margin-bottom: 30px;
    border-radius: 6px;
}

.testimonial-section blockquote p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-section cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fef5e7;
    border-top: 3px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7d6608;
    text-align: center;
}

.site-footer {
    background-color: #1a2332;
    padding: 60px 0 20px;
    color: #ecf0f1;
}

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

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

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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: 30px;
}

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #1a2332, #34495e);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.story-block {
    margin-bottom: 50px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

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

.story-image {
    margin: 60px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #eaf2f8;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

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

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5d6d7e;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 0;
}

.service-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 0 0 350px;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 40px;
}

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

.service-age {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-style: italic;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5d6d7e;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #34495e;
    font-size: 15px;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.enrollment-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.enrollment-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a2332;
}

.enrollment-cta p {
    font-size: 16px;
    color: #5d6d7e;
}

.contact-info-section {
    padding: 60px 0;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a2332;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5d6d7e;
    margin-bottom: 15px;
}

.contact-detail {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.note-text {
    font-size: 13px;
    color: #95a5a6;
    font-style: italic;
}

.location-context {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-context h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2332;
}

.location-context p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5d6d7e;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #27ae60, #229954);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 50px;
}

.next-steps {
    background-color: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a2332;
}

.steps-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: #34495e;
}

.thanks-details {
    background-color: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.preparation-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.preparation-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2332;
}

.preparation-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.preparation-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.9;
    color: #34495e;
    margin: 25px 0;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-update {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a2332;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-page ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 10px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

    .course-visual,
    .service-image {
        min-width: 100%;
        height: 250px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}