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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: #10B981;
    color: white;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

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

.main-nav a:hover {
    color: #10B981;
}

.ad-notice {
    font-size: 0.85rem;
    color: #9ca3af;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
}

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrap {
    width: 100%;
    overflow: hidden;
    max-height: 500px;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-column {
    flex: 1 1 65%;
    min-width: 300px;
}

.sidebar-column {
    flex: 1 1 25%;
    min-width: 250px;
}

.intro-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #f9fafb;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.content-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-block.offset-left {
    flex-direction: row;
}

.content-block.offset-right {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1 1 55%;
    min-width: 280px;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

.text-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.image-accent {
    flex: 1 1 40%;
    min-width: 250px;
}

.image-accent img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-inline {
    background-color: #ecfdf5;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #10B981;
}

.testimonial-inline.alternate {
    background-color: #f0f9ff;
    border-left-color: #3b82f6;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4b5563;
}

.benefit-reveal {
    margin: 3rem 0;
}

.benefit-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.benefit-item p {
    font-size: 1rem;
    color: #4b5563;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary,
.btn-sidebar,
.btn-select {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #10B981;
    color: white;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
    transform: translateY(-2px);
}

.btn-sidebar {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    text-align: center;
}

.btn-sidebar:hover {
    background-color: #2563eb;
}

.btn-select {
    background-color: #8b5cf6;
    color: white;
}

.btn-select:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

.trust-section {
    max-width: 750px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 8px;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.trust-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.programme-overview {
    margin: 4rem 0;
}

.programme-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.programme-overview > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #4b5563;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #10B981;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: #10B981;
    background-color: #f0fdf4;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.age-range {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card > p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.enrollment-form {
    margin: 3rem auto;
    max-width: 700px;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.enrollment-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f0fdf4;
    border-radius: 8px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.sidebar-box {
    background-color: #f9fafb;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.sidebar-box.highlight {
    background-color: #ecfdf5;
    border: 2px solid #10B981;
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.fact-list,
.location-list {
    list-style: none;
}

.fact-list li,
.location-list li {
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.fact-list li:before,
.location-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.sidebar-testimonial {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.sidebar-cta {
    margin-top: 2rem;
}

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-column a:hover {
    color: #10B981;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    margin-bottom: 3rem;
    border-radius: 8px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1 1 55%;
    min-width: 280px;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.intro-image {
    flex: 1 1 40%;
    min-width: 250px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.philosophy-section,
.methodology-section,
.credentials-section,
.community-section {
    margin-bottom: 4rem;
}

.philosophy-section h2,
.methodology-section h2,
.credentials-section h2,
.community-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #111827;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.philosophy-item p {
    color: #4b5563;
}

.methodology-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.method-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-block {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-left: 4px solid #10B981;
    border-radius: 6px;
}

.method-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.method-block p {
    color: #4b5563;
}

.credentials-section p,
.community-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.cta-box,
.cta-box-contact {
    text-align: center;
    padding: 3rem;
    background-color: #f0fdf4;
    border-radius: 8px;
    margin: 4rem 0;
}

.cta-box h3,
.cta-box-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-box p,
.cta-box-contact p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.service-detail.highlighted {
    border-color: #10B981;
    background-color: #f0fdf4;
}

.service-detail.special {
    border-color: #3b82f6;
    background-color: #f0f9ff;
}

.service-header {
    margin-bottom: 2rem;
}

.service-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.service-age {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10B981;
}

.service-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-description {
    flex: 1 1 60%;
    min-width: 280px;
}

.service-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #111827;
}

.service-description h3:first-child {
    margin-top: 0;
}

.service-description p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.service-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-description li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.service-image {
    flex: 1 1 35%;
    min-width: 250px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 40%;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #10B981;
}

.hours-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
    color: #6b7280;
}

.contact-additional {
    flex: 1 1 50%;
    min-width: 280px;
}

.contact-additional h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-additional h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #111827;
}

.contact-additional p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.last-updated {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #111827;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    color: #4b5563;
}

.thanks-page {
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

#serviceConfirm {
    font-weight: 600;
    color: #10B981;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-info p {
    color: #4b5563;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .magazine-layout {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

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

    .content-block.offset-left,
    .content-block.offset-right {
        flex-direction: column;
    }

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

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

    .benefit-item {
        flex: 1 1 100%;
    }

    .philosophy-item {
        flex: 1 1 100%;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .cookie-content {
        font-size: 0.9rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}