:root {
    --primary-color: #2c5282;
    --primary-dark: #1a365d;
    --primary-light: #4a90e2;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-cream: #fefcf7;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie:hover {
    background-color: var(--accent-dark);
}

.btn-cookie.btn-outline {
    background-color: transparent;
    border: 1px solid var(--bg-white);
    color: var(--bg-white);
}

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

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

.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: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.nav-menu li {
    border-top: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.8), rgba(26, 54, 93, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
    text-align: center;
}

.intro-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-light);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 680px;
    margin: 0 auto;
}

.problem-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.split-content.reverse {
    flex-direction: column-reverse;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.split-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--text-dark);
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.stat-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.approach-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
}

.approach-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 56px;
    opacity: 0.95;
    line-height: 1.7;
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.approach-card p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.92;
}

.programmes-preview {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-header-centered p {
    font-size: 19px;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto;
}

.programmes-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.programme-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

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

.programme-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff9e6 0%, var(--bg-white) 100%);
}

.programme-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.programme-age {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.programme-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.programme-card > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.programme-features {
    margin: 28px 0;
}

.programme-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.programme-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 900;
    font-size: 18px;
}

.programme-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 28px 0 24px 0;
}

.testimonial-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.testimonial-large {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    position: relative;
    padding: 40px 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 28px;
    font-size: 17px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.methodology-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.method-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
}

.method-item {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.7;
}

.method-item strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.outcomes-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.outcomes-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.outcome-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.outcome-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.3;
}

.outcome-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.outcome-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.workshop-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.workshop-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.workshop-content {
    padding: 48px;
}

.workshop-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.workshop-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.workshop-options {
    margin: 32px 0;
}

.workshop-options li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.workshop-options li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.workshop-pricing {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.price-item span {
    font-size: 16px;
    color: var(--text-medium);
}

.price-item strong {
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: 900;
}

.workshop-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.cta-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.cta-form-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.95;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item {
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 680px;
    margin: 0 auto;
}

.services-intro {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.intro-content .large-text {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.service-detail-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.service-card-full {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
}

.service-card-full.highlight {
    border: 3px solid var(--accent-color);
}

.service-header {
    margin-bottom: 36px;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.age-badge {
    background-color: var(--primary-light);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.duration {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.popular-badge {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.service-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-tagline {
    font-size: 19px;
    color: var(--text-medium);
    font-weight: 500;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-description h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.curriculum-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.curriculum-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.curriculum-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.curriculum-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.service-details-box {
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.detail-item:last-of-type {
    border-bottom: none;
}

.detail-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

.detail-item span {
    color: var(--text-medium);
}

.price-box {
    margin: 28px 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    text-align: center;
    color: var(--bg-white);
}

.price-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.price-period {
    display: block;
    font-size: 16px;
    opacity: 0.85;
}

.additional-services {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.additional-services h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.additional-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.additional-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.additional-card > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.feature-list {
    margin: 24px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
}

.additional-pricing {
    margin: 28px 0;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
}

.pricing-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.pricing-row strong {
    font-size: 22px;
    color: var(--primary-dark);
    font-weight: 900;
}

.enrol-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.enrol-section h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.enrol-section .form-intro {
    color: var(--text-medium);
    opacity: 1;
}

.enrol-section .form-group label {
    color: var(--text-dark);
}

.philosophy-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.principles-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.principles-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.principle-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.principle-icon {
    font-size: 52px;
}

.principle-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.principle-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
}

.methodology-detail {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.methodology-detail h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-card {
    padding: 36px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.method-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.method-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.method-card .method-explanation {
    font-style: italic;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.who-we-are {
    padding: 90px 0;
    background-color: var(--bg-cream);
}

.who-we-are h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.intro-paragraph {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    text-align: center;
}

.who-we-are > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    text-align: center;
}

.team-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
}

.value-item {
    padding: 28px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.value-item h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.impact-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.impact-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.impact-card {
    padding: 36px;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.impact-card blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
}

.impact-card cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.commitment-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.commitment-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.commitments-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.commitment-item {
    padding: 28px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.commitment-item h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.commitment-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-about .btn-primary {
    margin: 0 8px 12px;
}

.cta-about .btn-outline {
    margin: 0 8px 12px;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-about .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
}

.contact-main {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-item a {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.quick-info {
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.quick-info h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-list {
    list-style: decimal;
    padding-left: 20px;
}

.process-list li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.faq-section h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.schools-enquiry {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.schools-box {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    border-radius: 12px;
    text-align: center;
}

.schools-box h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

.schools-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    opacity: 0.95;
}

.schools-box a {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

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

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

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 48px;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    margin: 48px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    list-style: decimal;
    padding-left: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 48px 0;
    align-items: center;
}

.additional-info {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.additional-info p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.resource-links {
    list-style: disc;
    padding-left: 24px;
}

.resource-links li {
    padding: 8px 0;
    font-size: 16px;
}

.resource-links a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.update-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
}

.legal-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

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

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

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

@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

    .form-row .form-group {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cta-about .btn-primary,
    .cta-about .btn-outline {
        margin: 0 8px;
    }
}

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

    .hero-subtitle {
        font-size: 22px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        max-height: none;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .nav-menu li {
        border-top: none;
    }

    .nav-menu a {
        padding: 10px 18px;
        border-radius: 6px;
    }

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

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

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

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

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

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

    .approach-card {
        flex: 1;
        min-width: 300px;
    }

    .programmes-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .programme-card {
        flex: 1;
    }

    .outcome-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .outcome-number {
        flex-shrink: 0;
        width: 100px;
    }

    .workshop-card {
        flex-direction: row;
    }

    .workshop-content,
    .workshop-image {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

    .curriculum-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .curriculum-item {
        flex: calc(50% - 12px);
    }

    .additional-grid {
        flex-direction: row;
    }

    .additional-card {
        flex: 1;
    }

    .principles-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle-item {
        flex: calc(50% - 18px);
    }

    .team-values {
        flex-direction: row;
    }

    .value-item {
        flex: 1;
    }

    .impact-grid {
        flex-direction: row;
    }

    .impact-card {
        flex: 1;
    }

    .commitments-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .commitment-item {
        flex: calc(50% - 14px);
    }

    .contact-layout {
        flex-direction: row;
    }

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

    .workshop-pricing {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .service-body {
        flex-direction: row;
    }

    .service-description {
        flex: 2;
    }

    .service-details-box {
        flex: 1;
    }
}
