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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90d9;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px;
    background-color: var(--background-light);
}

.split-right {
    padding: 0;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image img,
.feature-image img,
.service-image img,
.about-image img,
.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

.intro-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

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

.intro-text-center h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-text-center p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.feature-content {
    max-width: 500px;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.services-preview h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: var(--background-white);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-color);
}

.testimonial-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--background-white);
}

.testimonial {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.values-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-block {
    flex: 1;
    min-width: 250px;
    padding: 25px;
}

.value-block h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.booking-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.booking-split {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.booking-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.booking-form-container {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-form h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.final-cta {
    padding: 80px 20px;
    background-color: var(--background-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--background-white);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.page-hero {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.service-detail-content {
    max-width: 500px;
}

.service-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

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

.pricing-summary {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.pricing-summary h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    gap: 15px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.programme-name {
    flex: 2;
    font-weight: 600;
    color: var(--text-dark);
}

.programme-age {
    flex: 1;
    color: var(--text-light);
}

.programme-duration {
    flex: 1;
    color: var(--text-light);
}

.programme-price {
    flex: 0.8;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: right;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-style: italic;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--background-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.story-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.story-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.values-detail {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.values-detail h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.impact-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.impact-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.impact-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

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

.contact-info {
    max-width: 500px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-block a:hover {
    color: var(--secondary-color);
}

.contact-map {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 141, 0.9);
    color: var(--background-white);
    padding: 25px;
}

.map-overlay p {
    margin: 0;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.faq-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.directions-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.directions-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.directions-split {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.direction-block {
    flex: 1;
    min-width: 250px;
}

.direction-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.direction-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--background-white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.next-steps {
    max-width: 500px;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.step {
    margin-bottom: 30px;
}

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

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

.info-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.info-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.info-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.additional-info {
    max-width: 500px;
}

.additional-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.additional-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.explore-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.explore-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.explore-section p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.explore-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.explore-link {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.explore-link:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page .updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: var(--background-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.cookies-table tbody tr:hover {
    background-color: var(--background-light);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-split,
    .feature-split,
    .service-detail-split,
    .about-split,
    .contact-split,
    .thanks-split {
        flex-direction: column;
    }

    .feature-split.reverse,
    .service-detail-split.reverse,
    .about-split.reverse,
    .thanks-split.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

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

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

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

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

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .programme-price {
        text-align: left;
    }

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }
}