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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

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(--bg-white);
}

.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-offset-left {
    flex: 0 0 55%;
    padding-right: 60px;
    transform: translateX(-10%);
}

.hero-offset-right {
    flex: 0 0 45%;
    position: relative;
    transform: translateY(8%);
}

.hero-badge {
    display: inline-block;
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-offset {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px 0 30px 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.story-hook {
    padding: 100px 20px;
    background: var(--bg-light);
}

.story-container-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.story-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.story-continue {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.story-bold {
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 700;
    color: var(--primary-color);
}

.problem-amplify {
    padding: 120px 20px;
}

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

.problem-text-offset {
    flex: 0 0 55%;
    transform: translateX(5%);
}

.problem-visual {
    flex: 0 0 45%;
    transform: translateY(-8%);
}

.section-heading-alt {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.problem-consequence {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 30px;
    padding: 20px;
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--accent-color);
}

.problem-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0 30px 0 30px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.insight-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.insight-heading {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.3;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 900px;
}

.insight-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.insight-stat {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.insight-label {
    font-size: 1.1rem;
    line-height: 1.5;
}

.approach-unique {
    padding: 120px 20px;
}

.approach-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-image-overlap {
    flex: 0 0 40%;
    transform: translateY(-10%);
}

.approach-content-offset {
    flex: 0 0 60%;
    transform: translateY(10%);
}

.approach-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px 0 30px 0;
    box-shadow: 20px -20px 60px rgba(0, 0, 0, 0.12);
}

.approach-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--primary-color);
}

.approach-features {
    margin: 40px 0;
}

.feature-point {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-point:last-child {
    border-bottom: none;
}

.btn-approach {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-approach:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.testimonial-scattered {
    padding: 120px 20px;
    background: var(--bg-light);
}

.testimonial-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-elevated {
    transform: translateX(-8%);
}

.card-offset-right {
    transform: translateX(15%);
    align-self: flex-end;
    max-width: 80%;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.transformation-journey {
    padding: 120px 20px;
}

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

.journey-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    color: var(--primary-color);
}

.journey-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.journey-block {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.block-offset-1 {
    transform: translateY(0);
}

.block-offset-2 {
    transform: translateY(30px);
}

.block-offset-3 {
    transform: translateY(-20px);
}

.block-offset-4 {
    transform: translateY(10px);
}

.journey-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

.social-proof {
    padding: 120px 20px;
    background: var(--bg-light);
}

.proof-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.proof-stat-large {
    flex: 0 0 40%;
    text-align: center;
}

.stat-number-big {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-description {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 20px;
    font-weight: 600;
}

.proof-highlights {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.proof-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.proof-caption {
    padding: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.programmes-reveal {
    padding: 120px 20px;
}

.programmes-header-offset {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.programmes-heading {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.programmes-subheading {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
}

.programmes-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.programme-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.programme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.programme-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tag-premium {
    background: rgba(255, 255, 255, 0.4);
}

.programme-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.programme-age {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.programme-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.programme-includes {
    list-style: none;
    margin-bottom: 30px;
}

.programme-includes li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 0.95rem;
}

.programme-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--success-color);
}

.card-featured .programme-includes li::before,
.card-premium .programme-includes li::before {
    color: white;
}

.programme-pricing {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
}

.card-featured .programme-pricing,
.card-premium .programme-pricing {
    background: rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-programme,
.btn-programme-detail {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.card-featured .btn-programme,
.card-premium .btn-programme {
    background: white;
    color: var(--primary-color);
}

.btn-programme:hover,
.btn-programme-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.urgency-block {
    padding: 100px 20px;
    background: var(--accent-color);
    color: white;
}

.urgency-container-offset {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(-5%);
}

.urgency-heading {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.urgency-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.urgency-subtext {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-urgency {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.final-trust {
    padding: 120px 20px;
}

.trust-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text-side {
    flex: 0 0 55%;
}

.trust-image-side {
    flex: 0 0 45%;
}

.trust-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.trust-text-side p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-bold {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
}

.trust-guarantee {
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--success-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.trust-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0 30px 0 30px;
    box-shadow: -20px -20px 60px rgba(0, 0, 0, 0.1);
}

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

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.booking-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.contact-form-modern {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    flex: 1;
}

.form-group-full {
    width: 100%;
    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 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    padding: 16px 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.footer-modern {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

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

.page-hero-offset {
    padding: 120px 20px 80px;
    background: var(--bg-light);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.page-title-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
}

.page-hero-image {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-story {
    padding: 100px 20px;
}

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

.content-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-text-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
}

.philosophy-grid {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.section-heading-center {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.philosophy-cards-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.card-highlight {
    background: var(--secondary-color);
    color: white;
}

.card-highlight h3 {
    color: white;
}

.methodology-detail {
    padding: 120px 20px;
}

.methodology-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.methodology-text {
    flex: 0 0 60%;
}

.methodology-visual {
    flex: 0 0 40%;
}

.methodology-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--primary-color);
}

.methodology-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.method-points {
    margin-top: 50px;
}

.method-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

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

.method-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.method-content p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.methodology-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.educators-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.educators-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.educators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.educator-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.educator-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.educator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.educator-name {
    padding: 20px 20px 5px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.educator-role {
    padding: 0 20px 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.educator-bio {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.outcomes-proof {
    padding: 100px 20px;
}

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

.outcomes-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--primary-color);
}

.outcomes-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.stat-visual {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.values-display {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.values-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.value-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-about {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

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

.cta-about-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-about-text {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-cta-large {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 18px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.services-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.services-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
}

.programmes-detailed {
    padding: 80px 20px;
}

.programme-detail-card {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.premium-card {
    background: linear-gradient(to right, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    padding: 40px;
    border-radius: 20px;
}

.programme-detail-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.programme-detail-layout.reverse {
    flex-direction: row-reverse;
}

.programme-detail-image {
    flex: 0 0 40%;
}

.programme-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.programme-detail-content {
    flex: 0 0 60%;
}

.programme-badge-detail {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.badge-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.programme-detail-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--primary-color);
}

.programme-detail-age {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.programme-detail-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.programme-learning,
.programme-includes-detail {
    margin-bottom: 30px;
}

.programme-learning h3,
.programme-includes-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.learning-list,
.includes-list {
    list-style: none;
}

.learning-list li,
.includes-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.learning-list li::before,
.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.programme-price-detail {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-right: 10px;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 10px;
}

.comparison-guide {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.comparison-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.comparison-intro {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.comparison-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.comparison-card p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.comparison-recommend {
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-hero {
    padding: 120px 20px 60px;
    background: var(--bg-light);
}

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

.contact-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-side {
    flex: 0 0 40%;
    min-width: 300px;
}

.contact-info-additional {
    flex: 0 0 55%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 800;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.contact-cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-contact-cta {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thanks-hero {
    padding: 120px 20px 60px;
    background: var(--bg-light);
    min-height: 100vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next-steps {
    margin-bottom: 60px;
}

.thanks-subtitle {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 800;
    color: var(--primary-color);
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
}

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

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

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

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.btn-thanks-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-thanks-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.thanks-contact {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.thanks-contact p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

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

    .hero-offset-left,
    .hero-offset-right {
        flex: 1;
        transform: none;
        padding-right: 0;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .problem-split,
    .approach-asymmetric,
    .trust-layout-split,
    .proof-wrapper,
    .methodology-layout,
    .programme-detail-layout {
        flex-direction: column;
    }

    .problem-text-offset,
    .problem-visual,
    .approach-image-overlap,
    .approach-content-offset,
    .trust-text-side,
    .trust-image-side,
    .proof-stat-large,
    .proof-highlights,
    .methodology-text,
    .methodology-visual,
    .programme-detail-image,
    .programme-detail-content {
        flex: 1;
        transform: none;
    }

    .nav-floating {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-heading-alt,
    .approach-title,
    .trust-heading,
    .programmes-heading {
        font-size: 2rem;
    }

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

    .testimonial-card {
        transform: none !important;
        max-width: 100%;
    }

    .journey-block {
        transform: none !important;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

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

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 1.8rem;
    }

    .services-title,
    .page-title-large {
        font-size: 2rem;
    }

    .contact-form-modern {
        padding: 30px 20px;
    }

    .programme-card {
        min-width: 100%;
    }
}