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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #4A9EBF;
    --accent-color: #F26B5B;
    --dark-text: #1A1A1A;
    --light-text: #555555;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--bg-white);
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

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

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

.btn-cookie-accept {
    background: var(--success-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #45a049;
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    list-style: none;
    padding: 1rem;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-menu.active {
    max-height: 400px;
}

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--dark-text);
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.hero-funnel {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(44,95,124,0.95) 0%, rgba(74,158,191,0.9) 100%),
                url('../images/hero-background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-overlay {
    width: 100%;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.hero-content-center h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242,107,91,0.3);
}

.cta-primary:hover {
    background: #e05a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242,107,91,0.4);
}

.story-hook,
.transition-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.highlight-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
}

.problem-amplify {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.impact-list {
    list-style: none;
    margin: 2rem 0;
}

.impact-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.impact-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.callout-stat {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.transition-section {
    background: var(--primary-color);
    color: white;
}

.transition-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.transition-section p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.insight-reveal {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

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

.content-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.insight-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

.method-reveal {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 12px;
}

.method-reveal h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.method-reveal p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 1.5rem;
}

.social-proof {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.testimonials-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: normal;
    font-weight: 600;
}

.benefits-cascade {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-block {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.benefit-block ul {
    list-style: none;
}

.benefit-block li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.programme-preview {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-text);
}

.programme-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.prog-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.prog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.prog-card.featured {
    border: 3px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.prog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prog-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.age-range {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.prog-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    color: var(--light-text);
}

.prog-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.how-it-works {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-text);
}

.urgency-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(242,107,91,0.1) 0%, rgba(242,107,91,0.05) 100%);
}

.urgency-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.urgency-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.urgency-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    font-style: italic;
    margin-top: 2rem;
}

.final-cta {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: transparent;
    color: var(--light-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--dark-text);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.enrolment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    padding: 1rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sticky-cta-text {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.7rem 1.8rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #e05a4a;
}

.main-footer {
    background: var(--dark-text);
    color: white;
    padding: 3rem 1.5rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.page-hero,
.page-hero-alt,
.page-hero-contact {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-hero h1,
.page-hero-contact h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p,
.page-hero-contact p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.page-hero-alt {
    text-align: left;
    background: var(--bg-light);
}

.hero-content-left {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-left h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 4rem 1.5rem;
}

.service-detail {
    margin-bottom: 5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detail.featured-service {
    border: 3px solid var(--accent-color);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-header {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-title-group h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-age {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
}

.service-pricing {
    text-align: right;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-period {
    font-size: 0.95rem;
    color: var(--light-text);
}

.service-detail-content {
    padding: 2.5rem;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.comparison-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.05rem;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table td {
    font-size: 1rem;
}

.cta-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.about-story {
    padding: 4rem 1.5rem;
}

.story-block {
    margin: 3rem 0;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.approach-visual {
    margin: 3rem 0;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.methodology {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

.evidence-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.evidence-points {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.evidence-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.evidence-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.evidence-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

.team-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

.values-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 1.2rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.impact-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-text);
}

.contact-main {
    padding: 4rem 1.5rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

.contact-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.contact-note h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.location-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.location-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-text ul {
    list-style: none;
    margin: 1rem 0;
}

.location-text li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.location-text li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-contact {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

.thanks-hero {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--light-text);
}

.thanks-details {
    padding: 4rem 1.5rem;
}

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

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-badge {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

.thanks-notice {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.thanks-notice h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.programme-confirmation {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 8px;
    display: none;
}

.programme-confirmation h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.programme-confirmation p {
    font-size: 1.15rem;
}

.thanks-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.sidebar-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.sidebar-card ul {
    list-style: none;
    margin-top: 1rem;
}

.sidebar-card li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.sidebar-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.thanks-cta {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.social-share {
    margin-top: 2rem;
}

.social-share p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
}

.additional-resources {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.btn-resource {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-resource:hover {
    background: var(--primary-color);
}

.legal-page {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.6rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0.5rem 0;
    color: var(--light-text);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table thead {
    background: var(--primary-color);
    color: white;
}

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

.cookies-table th {
    font-weight: 600;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

@media (min-width: 768px) {
    .hero-content-center h1 {
        font-size: 3rem;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-visual {
        flex: 1;
    }

    .insight-grid,
    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card,
    .philosophy-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .programme-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .prog-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        max-height: none;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        box-shadow: none;
    }

    .nav-menu li {
        margin: 0;
    }

    .service-detail-content {
        flex-direction: row;
    }

    .service-image,
    .service-description {
        flex: 1;
    }

    .service-detail:nth-child(even) .service-detail-content {
        flex-direction: row-reverse;
    }

    .stats-grid,
    .team-grid,
    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card,
    .team-member,
    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .thanks-details .content-wrapper {
        display: flex;
        gap: 3rem;
    }

    .thanks-info {
        flex: 2;
    }

    .thanks-sidebar {
        flex: 1;
    }

    .resource-cards {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

    .location-details {
        flex-direction: row;
        gap: 3rem;
    }

    .location-text,
    .location-map {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content-center h1 {
        font-size: 3.5rem;
    }

    .insight-card,
    .philosophy-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .stat-card,
    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .benefits-flow {
        flex-direction: row;
    }

    .benefit-block {
        flex: 1;
    }
}