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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

.ad-disclosure {
    font-size: 11px;
    color: #6b7280;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2563eb;
}

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

.hero-card .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

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

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

.hero-image {
    flex: 1;
    min-width: 300px;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #1d4ed8;
}

.cta-outline {
    display: inline-block;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.cta-outline:hover {
    background: #2563eb;
    color: #ffffff;
}

.intro-cards {
    padding: 60px 0;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.info-card p {
    color: #475569;
    line-height: 1.7;
}

.why-section {
    padding: 60px 0;
    background: white;
}

.why-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.why-text {
    flex: 1;
    min-width: 300px;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.why-text p {
    margin-bottom: 20px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.why-image {
    flex: 1;
    min-width: 300px;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.link-cta {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #1d4ed8;
}

.programmes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.programmes-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #64748b;
    font-size: 17px;
}

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

.programme-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.programme-card.featured {
    border: 3px solid #2563eb;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.programme-icon {
    margin-bottom: 20px;
}

.programme-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.programme-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1e293b;
}

.age-range {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.programme-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.programme-price {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.select-programme {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-programme:hover {
    background: #1d4ed8;
}

.approach-section {
    padding: 60px 0;
    background: white;
}

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

.approach-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.approach-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.outcomes-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.outcomes-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.outcomes-image {
    flex: 1;
    min-width: 300px;
}

.outcomes-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.outcomes-text {
    flex: 1;
    min-width: 300px;
}

.outcomes-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

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

.outcomes-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.outcomes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-section {
    padding: 60px 0;
    background: white;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #667eea;
}

.testimonial-card p {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
    font-style: normal;
}

.enrollment-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.enrollment-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.enrollment-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

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

.disclaimer-section {
    padding: 40px 0;
    background: white;
}

.disclaimer-card {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #92400e;
}

.disclaimer-card p {
    color: #78350f;
    line-height: 1.7;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 300;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #374151;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1e293b;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    padding: 20px;
    display: none;
    z-index: 3000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #10b981;
    color: white;
}

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

.btn-reject {
    background: #6b7280;
    color: white;
}

.btn-reject:hover {
    background: #4b5563;
}

.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.page-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.mission-section,
.approach-detail-section,
.impact-section {
    padding: 60px 0;
}

.mission-wrapper,
.approach-detail-wrapper,
.impact-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.mission-text,
.approach-detail-text,
.impact-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h2,
.approach-detail-text h2,
.impact-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.mission-text p,
.approach-detail-text p,
.impact-text p {
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.8;
}

.mission-image,
.approach-detail-image,
.impact-image {
    flex: 1;
    min-width: 300px;
}

.mission-image img,
.approach-detail-image img,
.impact-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.values-section,
.curriculum-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.values-section h2,
.curriculum-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1e293b;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.team-section {
    padding: 60px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #1e293b;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content p {
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.8;
}

.commitment-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.commitment-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.commitment-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.commitment-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.curriculum-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.curriculum-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.curriculum-card p {
    color: #64748b;
    line-height: 1.7;
}

.services-intro {
    padding: 40px 0;
    background: white;
}

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

.services-intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.services-intro-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-detailed {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #2563eb;
}

.service-detail-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-detail-icon img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.service-detail-title {
    flex: 1;
    min-width: 250px;
}

.service-detail-title h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1e293b;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 10px;
}

.service-detail-content h4 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #1e293b;
}

.service-detail-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.pricing-notes {
    padding: 40px 0;
    background: white;
}

.pricing-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.pricing-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.pricing-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.enrollment-cta {
    padding: 60px 0;
    background: #f8f9fa;
}

.enrollment-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.enrollment-cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-detail-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.contact-detail-card p {
    color: #64748b;
    line-height: 1.7;
}

.hours-note {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 10px;
}

.contact-image-section {
    flex: 1;
    min-width: 300px;
}

.contact-image-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.enquiry-section {
    padding: 60px 0;
    background: white;
}

.enquiry-card {
    max-width: 900px;
    margin: 0 auto;
}

.enquiry-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    text-align: center;
}

.faq-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.directions-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.directions-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.directions-text {
    flex: 1;
    min-width: 300px;
}

.directions-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.directions-text h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e293b;
}

.directions-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.directions-image {
    flex: 1;
    min-width: 300px;
}

.directions-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.visit-section {
    padding: 60px 0;
    background: white;
}

.visit-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.visit-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.visit-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #1e293b;
}

.steps-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 12px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

.thanks-info {
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-info p {
    color: #1e40af;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.selected-programme-info {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.selected-programme-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #92400e;
}

.selected-programme-info p {
    color: #78350f;
    font-weight: 600;
}

.additional-resources {
    padding: 60px 0;
    background: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.resource-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1e293b;
}

.last-updated {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 35px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #334155;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #475569;
}

.legal-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #64748b;
}

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

    .page-hero h1 {
        font-size: 36px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .header-wrapper {
        justify-content: center;
    }

    .card-grid,
    .programme-cards,
    .approach-grid,
    .values-grid,
    .curriculum-cards,
    .resource-cards {
        flex-direction: column;
    }

    .enrollment-card,
    .enrollment-cta-card {
        padding: 40px 25px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 25px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}