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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.navigation {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a5490;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.intro-block {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a5490;
    text-align: center;
}

.intro-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
}

.featured-courses {
    padding: 100px 20px;
    background: #ffffff;
}

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

.course-card {
    flex: 0 1 360px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.course-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.course-info {
    padding: 25px;
}

.course-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.course-age {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
    font-weight: 500;
}

.course-info p {
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.6;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin: 15px 0;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #144270;
}

.mission-section {
    padding: 100px 20px;
    background: #f1f3f5;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a5490;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.split-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #dee2e6;
}

.additional-programmes {
    padding: 100px 20px;
    background: #ffffff;
}

.additional-programmes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5490;
}

.programme-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.programme-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.programme-visual {
    flex: 0 0 300px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #dee2e6;
}

.programme-details {
    flex: 1;
}

.programme-details h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.programme-details p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #495057;
}

.programme-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a5490;
    margin: 15px 0;
}

.testimonials-section {
    padding: 100px 20px;
    background: #1a5490;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.95rem;
}

.enrollment-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.enrollment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a5490;
}

.enrollment-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #495057;
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    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: #1a5490;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #144270;
}

.london-section {
    padding: 100px 20px;
    background: #2c3e50;
}

.london-section .container-wide {
    display: flex;
    gap: 60px;
    align-items: center;
}

.london-content {
    flex: 1;
    color: #ffffff;
}

.london-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.london-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.london-visual {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #495057;
}

.footer {
    background: #212529;
    color: #adb5bd;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #495057;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept {
    background: #ffffff;
    color: #2c3e50;
}

.btn-cookie-accept:hover {
    background: #e9ecef;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #1a5490, #2c3e50);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.page-intro {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.95;
}

.story-section {
    padding: 80px 20px;
    background: #ffffff;
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a5490;
}

.story-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.approach-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

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

.approach-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
    line-height: 1.7;
    color: #495057;
}

.values-section {
    padding: 80px 20px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a5490;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.value-item p {
    line-height: 1.7;
    color: #495057;
}

.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a5490;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #495057;
}

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

.team-member {
    flex: 0 1 340px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.member-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #dee2e6;
}

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.member-role {
    padding: 0 20px 10px;
    font-size: 0.95rem;
    color: #1a5490;
    font-weight: 600;
}

.team-member p:last-child {
    padding: 0 20px 20px;
    color: #495057;
    line-height: 1.6;
}

.impact-section {
    padding: 80px 20px;
    background: #ffffff;
}

.impact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a5490;
}

.impact-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.impact-list {
    margin: 30px 0;
    padding-left: 30px;
}

.impact-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #495057;
}

.community-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.community-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a5490;
    text-align: center;
}

.community-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 0 0 450px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #dee2e6;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a5490;
}

.service-meta {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 15px 0;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.service-features {
    margin: 20px 0;
    padding-left: 25px;
}

.service-features li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #495057;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #144270;
}

.comparison-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a5490;
}

.comparison-section > p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #495057;
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.guide-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.guide-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.guide-item p {
    line-height: 1.6;
    color: #495057;
}

.contact-info-section {
    padding: 80px 20px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a5490;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    line-height: 1.7;
    color: #495057;
}

.contact-email {
    font-weight: 600;
    color: #1a5490;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #dee2e6;
}

.directions-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.directions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a5490;
}

.directions-section > p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: #495057;
}

.transport-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.transport-option {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.transport-option h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.transport-option p {
    line-height: 1.7;
    color: #495057;
}

.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a5490;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    line-height: 1.7;
    color: #495057;
}

.enrollment-cta {
    padding: 80px 20px;
    background: #1a5490;
    text-align: center;
    color: #ffffff;
}

.enrollment-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.enrollment-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-section {
    padding: 100px 20px;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a5490;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #495057;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a5490;
}

.step-item p {
    line-height: 1.7;
    color: #495057;
}

.selected-service-info {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #1a5490;
    font-weight: 600;
}

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

.preparation-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.preparation-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a5490;
}

.preparation-section > p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #495057;
}

.preparation-list {
    padding-left: 30px;
}

.preparation-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #495057;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a5490;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #495057;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #495057;
}

.legal-page ul {
    margin: 15px 0 25px;
    padding-left: 30px;
}

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

.legal-page a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #144270;
}

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

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    color: #495057;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        margin: 15px 0;
        gap: 20px;
    }

    .ad-notice {
        font-size: 0.75rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

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

    .split-image {
        height: 300px;
    }

    .programme-item {
        flex-direction: column;
    }

    .programme-visual {
        flex: 1;
        width: 100%;
    }

    .london-section .container-wide {
        flex-direction: column;
    }

    .london-visual {
        height: 300px;
    }

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .service-visual {
        flex: 1;
        width: 100%;
        height: 300px;
    }

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

    .approach-card,
    .guide-item {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }
}