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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-text-content {
    max-width: 540px;
}

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-right {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

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

.split-section {
    display: flex;
    min-height: 500px;
}

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

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

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 2rem;
}

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

.section-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.split-content h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.split-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.split-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

.split-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.cta-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cta-primary:hover {
    background-color: #2980b9;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

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

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

.cta-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 400px;
}

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

.stat-card p {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.programmes-preview {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.programme-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.programme-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.programme-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

.programme-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

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

.card-header {
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.age-badge {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.programme-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.trust-indicators {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 300px;
    text-align: center;
}

.trust-icon {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.975rem;
}

.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

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

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-price {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

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

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
    box-shadow: var(--shadow);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.page-hero {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: var(--bg-white);
    font-size: 1.5rem;
    opacity: 0.95;
}

.mission-section {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-statement {
    color: var(--bg-white);
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.team-section .section-intro {
    margin-bottom: 2rem;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.impact-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.impact-section h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.impact-stat {
    flex: 1 1 300px;
}

.stat-large {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--bg-white);
    font-size: 1.25rem;
}

.services-intro {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-visual {
    flex: 1;
}

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

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

.service-detail {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

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

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

.service-title {
    flex: 1;
}

.service-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.service-content {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
}

.service-description {
    flex: 1;
}

.service-description p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-description h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.service-description ul {
    list-style: none;
    margin: 1rem 0;
}

.service-description ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-light);
}

.service-description ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-format {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 1rem;
}

.service-action {
    flex-shrink: 0;
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.comparison-help {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.help-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.help-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-side,
.contact-form-side {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.detail-note {
    font-size: 0.975rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-reassurance {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.contact-reassurance p {
    color: var(--text-light);
    line-height: 1.6;
}

.form-container {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.975rem;
    color: var(--text-light);
    line-height: 1.5;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

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

.step {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
}

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

.step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-service-info {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

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

.service-reminder h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.selected-programme-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.meanwhile-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.meanwhile-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.meanwhile-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meanwhile-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.meanwhile-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.meanwhile-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

.reassurance-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.reassurance-content {
    max-width: 800px;
    margin: 0 auto;
}

.reassurance-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.reassurance-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
}

.reassurance-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.reassurance-content a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.legal-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.cookies-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .programme-card {
        flex: 1 1 100%;
    }

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

    .help-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .hero-split,
    .split-section {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .split-visual {
        padding: 2rem;
    }

    .split-visual {
        min-height: 300px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .trust-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .value-card,
    .meanwhile-card {
        flex: 1 1 100%;
    }

    .steps-grid .step {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .section-intro h2,
    .testimonials-section h2,
    .values-section h2,
    .impact-section h2,
    .mission-content h2 {
        font-size: 2rem;
    }

    .hero-left,
    .split-content {
        padding: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .steps-grid .step {
        flex: 1 1 100%;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}