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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4a90e2;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px 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);
}

.top-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    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;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

main {
    min-height: 60vh;
}

.hero-card {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

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

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

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

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.info-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.info-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

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

.content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.text-block {
    flex: 2;
}

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

.text-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stat-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

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

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

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

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

.approach-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

.programmes-showcase h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.programme-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.programme-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--bg-light);
}

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

.age-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.programme-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: auto;
}

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

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

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

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

.service-card-alt {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.service-card-alt p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.duration {
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.cta-section {
    background: var(--primary-color);
    padding: 4rem 2rem;
}

.cta-card-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-card-large h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-card-large p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.enrol-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.enrol-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

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

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

.location-text {
    flex: 1;
}

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

.location-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-visual {
    flex: 1;
}

.location-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
}

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--accent-color);
    color: white;
}

.btn-cookie:hover {
    background: #e67e22;
}

.btn-cookie-alt {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-cookie-alt:hover {
    background: white;
    color: var(--text-dark);
}

.page-hero {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

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

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

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

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

.story-block {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.story-block img {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.story-text {
    flex: 1;
}

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

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.philosophy-cards {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.philosophy-cards h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-block {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.approach-block.reverse {
    flex-direction: row-reverse;
}

.approach-block img {
    flex: 1;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.block-content {
    flex: 1;
}

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

.block-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

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

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

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

.impact-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card-detailed {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.community-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.community-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.community-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.community-content img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

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

.cta-content-centered {
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.cta-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.services-intro {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.programme-detail-section {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.programme-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.programme-detail-card.featured-programme {
    border: 2px solid var(--accent-color);
}

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

.programme-header-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--bg-light);
}

.header-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.programme-body {
    padding: 2rem;
}

.programme-body img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.programme-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.programme-description h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

.programme-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.detailed-list li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.additional-offerings {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.additional-offerings h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-detail-card {
    flex: 1;
    min-width: 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.price-badge-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.service-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

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

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

.comparison-table-wrapper {
    overflow-x: auto;
}

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

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

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

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

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

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

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

.enrol-cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.enrol-cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.enrol-cta-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    padding: 1.8rem;
    border-radius: 8px;
}

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

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

.contact-info-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.contact-detail {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.location-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.location-text-block {
    flex: 1;
}

.location-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-text-block h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.location-text-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.areas-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.areas-list li {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--text-dark);
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.enquiry-types h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.enquiry-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.direction-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

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

.response-times {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

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

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

.alternative-contact {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.alternative-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.alternative-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.alternative-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

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

.next-steps-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.step-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

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

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

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

.selected-programme {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.programme-confirmation {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.programme-confirmation h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.selected-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.programme-confirmation p {
    color: var(--text-light);
}

.contact-reminder {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.reminder-content {
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.reminder-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reminder-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-details-simple {
    margin-top: 2rem;
}

.contact-details-simple p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.explore-more {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

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

.explore-cards {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

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

.explore-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

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

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem;
    color: var(--text-dark);
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container strong {
    color: var(--text-dark);
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--secondary-color);
}

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

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

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

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

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

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

    .approach-block.reverse {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        width: 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .section-header h2,
    .programmes-showcase h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
}