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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #3498db;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    background: #f8f9fa;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    overflow: hidden;
}

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

.intro-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.benefits-split {
    display: flex;
    min-height: 80vh;
}

.benefit-left,
.benefit-right {
    flex: 1;
}

.benefit-left {
    padding: 4rem;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.5rem;
}

.benefit-right {
    overflow: hidden;
}

.benefit-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.header-left p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-5px);
}

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

.service-info,
.service-visual {
    flex: 1;
}

.service-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.875rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.age-group {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-info p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
}

.service-visual {
    overflow: hidden;
    min-height: 300px;
}

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

.approach-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.approach-points {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.point-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.point-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.point-item p {
    opacity: 0.9;
}

.testimonials-split {
    display: flex;
    min-height: 70vh;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
}

.testimonial-left {
    overflow: hidden;
}

.testimonial-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-right {
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

blockquote {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
    border-radius: 4px;
}

blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #5a6c7d;
}

.location-split {
    display: flex;
    min-height: 70vh;
}

.location-info,
.location-visual {
    flex: 1;
}

.location-info {
    padding: 4rem;
    background: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-info p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.cta-outline:hover {
    background: #ffffff;
    color: #34495e;
}

.location-visual {
    overflow: hidden;
}

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

.enroll-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.enroll-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.enroll-left,
.enroll-right {
    flex: 1;
}

.enroll-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enroll-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.enroll-left p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.enroll-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-split {
    display: flex;
    min-height: 60vh;
}

.cta-content,
.cta-image {
    flex: 1;
}

.cta-content {
    padding: 4rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-large {
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #e67e22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-image {
    overflow: hidden;
}

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

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.6;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.page-container h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-container p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-container li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    font-size: 1.0625rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.contact-info strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .testimonials-split,
    .location-split,
    .final-cta-split {
        flex-direction: column;
    }

    .intro-split.reverse {
        flex-direction: column;
    }

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

    .enroll-split {
        flex-direction: column;
        gap: 2rem;
    }

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

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.0625rem;
    }

    .hero-left,
    .intro-text,
    .benefit-left,
    .testimonial-right,
    .location-info,
    .enroll-left,
    .cta-content {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}