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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #10b981;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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-light);
}

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

.hidden {
    display: none !important;
}

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

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

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

.nav-links {
    display: none;
    gap: 28px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.mobile-menu {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.intro-cards {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.info-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.why-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

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

.content-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.programmes-preview {
    padding: 60px 20px;
    background: var(--bg-light);
}

.programmes-preview h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 48px;
}

.programme-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.programme-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.programme-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.programme-card.featured::before {
    content: 'Popular Choice';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.card-header {
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.age-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.card-body {
    padding: 24px;
}

.card-body p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
}

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

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-select {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 16px;
}

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

.methodology-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

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

.method-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.method-card h3 {
    padding: 20px 24px 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.method-card p {
    padding: 0 24px 24px;
    color: var(--text-medium);
    line-height: 1.7;
}

.additional-services {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

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

.service-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    margin-top: 8px;
}

.testimonials-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card cite {
    color: var(--text-dark);
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
}

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

.enrolment-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

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

.enrolment-card > p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.enrolment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.selected-service {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.selected-service strong {
    color: var(--text-dark);
}

.selected-service span {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #059669;
    transform: translateY(-2px);
}

.main-footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
}

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

.cookie-content p {
    line-height: 1.6;
    color: #cbd5e1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #059669;
}

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

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

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-intro {
    padding: 60px 20px;
    background: var(--bg-light);
}

.intro-card-large {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card-large h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-card-large p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

.philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.philosophy-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    right: 24px;
}

.philosophy-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.methodology-detail {
    padding: 60px 20px;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-side h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-side p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-side {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-side img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

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

.value-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

.section-intro {
    text-align: center;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.team-card-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.impact-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

.impact-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.impact-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.programmes-overview {
    padding: 60px 20px;
    background: var(--bg-light);
}

.overview-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

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

.overview-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.programme-details {
    padding: 60px 20px;
    background: var(--bg-card);
}

.programme-detail-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

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

.programme-header-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.header-text h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.age-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 12px;
}

.programme-intro {
    color: var(--text-medium);
    font-size: 17px;
    line-height: 1.7;
}

.header-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.programme-content-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.content-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-column p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.learning-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.learning-list li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

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

.programme-cta {
    text-align: center;
}

.additional-services-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.support-services-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.support-service-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.support-service-card > p {
    color: var(--text-medium);
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.service-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.service-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
}

.enrolment-process {
    padding: 60px 20px;
    background: var(--bg-card);
}

.enrolment-process h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.process-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.card-icon-large {
    font-size: 56px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.email-display {
    color: var(--text-dark);
    font-weight: 600;
    font-family: monospace;
    font-size: 16px;
}

.note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row span:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.hours-row span:last-child {
    color: var(--text-medium);
}

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

.info-block {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-list li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.directions-section {
    padding: 60px 20px;
    background: var(--bg-card);
}

.directions-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.directions-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.directions-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.quick-links-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.quick-links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-link-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.quick-link-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.quick-link-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-details {
    padding: 60px 20px;
    background: var(--bg-light);
}

.thanks-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.thanks-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

.step-item {
    display: flex;
    gap: 20px;
}

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

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.thanks-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-thanks {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-card-thanks h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-card-thanks p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.useful-links {
    padding: 60px 20px;
    background: var(--bg-card);
}

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

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.link-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.legal-content {
    padding: 60px 20px;
    background: var(--bg-light);
}

.legal-document {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.legal-document p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 80px 40px;
    }

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

    .info-card {
        flex: 1 1 calc(33.333% - 16px);
    }

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

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

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

    .programme-card {
        flex: 1 1 calc(50% - 14px);
    }

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

    .method-card {
        flex: 1 1 calc(33.333% - 22px);
    }

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

    .service-card {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1 1 calc(33.333% - 16px);
    }

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

    .footer-column {
        flex: 1 1 calc(25% - 24px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }

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

    .philosophy-card {
        flex: 1 1 calc(50% - 14px);
    }

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

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

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

    .value-card {
        flex: 1 1 calc(50% - 12px);
    }

    .team-card-container {
        flex-direction: row;
    }

    .team-card {
        flex: 1;
    }

    .programme-header-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .programme-content-grid {
        flex-direction: row;
    }

    .content-column {
        flex: 1;
    }

    .support-services-grid {
        flex-direction: row;
    }

    .support-service-card {
        flex: 1;
    }

    .process-cards {
        flex-direction: row;
    }

    .process-card {
        flex: 1;
    }

    .contact-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .quick-links-grid {
        flex-direction: row;
    }

    .quick-link-card {
        flex: 1;
    }

    .thanks-info-cards {
        flex-direction: row;
    }

    .info-card-thanks {
        flex: 1;
    }

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

    .link-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .card-grid {
        flex-wrap: nowrap;
    }

    .programme-cards {
        flex-wrap: nowrap;
    }

    .programme-card {
        flex: 1 1 25%;
    }

    .method-cards {
        flex-wrap: nowrap;
    }

    .testimonial-cards {
        flex-wrap: nowrap;
    }

    .philosophy-cards {
        flex-wrap: nowrap;
    }

    .philosophy-card {
        flex: 1 1 25%;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 25%;
    }

    .process-cards {
        flex-wrap: nowrap;
    }

    .contact-info-cards {
        flex-wrap: nowrap;
    }
}
