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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb9;
    --accent-color: #f4f7f9;
    --dark-color: #1a3a4d;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --success-color: #5cb85c;
    --hover-color: #1e4a60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background: #4a9a4a;
}

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

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

.cookie-link {
    color: #fff;
    text-decoration: underline;
}

section {
    padding: 5rem 2rem;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-wrapper.narrow {
    max-width: 900px;
}

.bg-light {
    background: var(--accent-color);
}

.bg-accent {
    background: linear-gradient(135deg, #e8f2f7 0%, #f4f9fc 100%);
}

.hero-block {
    padding: 6rem 2rem 5rem;
    background: linear-gradient(135deg, #f8fbfd 0%, #fff 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.cta-primary:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,95,125,0.3);
}

.cta-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.1rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 800px;
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.programme-intro h2 {
    margin-bottom: 1rem;
}

.programme-intro p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.testimonial-block {
    padding: 4rem 2rem;
}

.testimonial-feature {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    padding: 3rem;
    background: #fff;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.testimonial-feature cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--light-text);
    font-size: 1rem;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.methodology-block {
    padding: 6rem 2rem;
}

.methodology-block h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.methodology-block .section-intro {
    text-align: center;
    margin: 0 auto 4rem;
}

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

.service-card {
    flex: 1;
    min-width: 340px;
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-header h3 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-desc {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
}

.service-card h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--dark-color);
}

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

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

.service-features li:before,
.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-select,
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover,
.btn-submit:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 4rem 2rem;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 500;
}

.enrollment-form {
    padding: 5rem 2rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.main-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background: var(--accent-color);
}

.form-group small {
    display: block;
    margin-top: 0.4rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

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

.final-push h2 {
    margin-bottom: 1rem;
}

.final-push p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(44,95,125,0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44,95,125,0.5);
}

.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

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

.page-hero {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.philosophy-block {
    padding: 5rem 2rem;
}

.principle-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.principle-item {
    padding: 3rem;
}

.principle-item h3 {
    color: var(--primary-color);
}

.principle-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.method-detail {
    padding: 5rem 2rem;
}

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

.outcome-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.outcome-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.cta-block {
    padding: 4rem 2rem;
}

.cta-block h2 {
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    line-height: 1.8;
}

.contact-item a {
    font-weight: 600;
}

.small-note {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 1.5rem;
}

.btn-inline {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.faq-block {
    padding: 4rem 2rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f0f8f4 0%, #fff 100%);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-top: 1rem;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.05rem;
}

.info-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.info-item {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.info-item h3 {
    margin-bottom: 1rem;
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-date {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: var(--accent-color);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--dark-color);
}

.programmes-intro {
    padding: 3rem 2rem;
}

.services-listing {
    padding: 4rem 2rem;
}

.scheduling-info {
    padding: 4rem 2rem;
}

.enroll-section {
    padding: 4rem 2rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

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

    .value-card {
        min-width: 100%;
    }

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

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

    .service-card {
        min-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

    section {
        padding: 3rem 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

    .outcome-card {
        min-width: 100%;
    }
}