* {
    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-color: #f8f9fa;
}

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #6b7280;
    padding: 0.3rem 0.8rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e293b;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.card-grid {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-intro p {
    font-size: 1.1rem;
    color: #64748b;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    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);
}

.card-icon {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.card-icon img {
    width: 100%;
    height: 200px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.featured-courses {
    padding: 4rem 0;
    background-color: #f1f5f9;
}

.featured-courses h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.course-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 380px;
    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 {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.course-image img {
    width: 100%;
    height: 100%;
}

.course-details {
    padding: 2rem;
}

.course-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.course-details p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.duration {
    color: #64748b;
    font-size: 0.95rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.enrollment-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-intro {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    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: #2563eb;
}

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

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

.testimonials-section {
    padding: 4rem 0;
    background-color: #1e293b;
    color: #ffffff;
}

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

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background-color: #334155;
    padding: 2rem;
    border-radius: 8px;
    max-width: 350px;
    flex: 1;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #94a3b8;
    font-size: 0.95rem;
}

.site-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #2563eb;
}

.footer-disclaimer {
    background-color: #1e293b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: #10b981;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #059669;
}

.btn-secondary {
    background-color: #64748b;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #475569;
}

.page-header {
    background-color: #1e293b;
    color: #ffffff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.about-image img {
    width: 100%;
    height: 400px;
}

.methodology-section {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.methodology-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.method-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.method-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

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

.values-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.values-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.values-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.values-image img {
    width: 100%;
    height: 400px;
}

.instructor-section {
    background-color: #f1f5f9;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.instructor-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.instructor-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.community-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.community-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.community-image img {
    width: 100%;
    height: 400px;
}

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

.community-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.community-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.cta-section {
    background-color: #2563eb;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-section .cta-button:hover {
    background-color: #f1f5f9;
}

.services-listing {
    padding: 4rem 0;
}

.service-card-full {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #e5e7eb;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.service-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #374151;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.enroll-btn {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.programme-info {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.programme-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

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

.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.contact-block p {
    color: #475569;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.additional-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.additional-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.additional-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

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

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #475569;
}

.thanks-details {
    background-color: #f0fdf4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.selected-programme h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.selected-programme p {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 600;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2563eb;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-info {
    margin-bottom: 2rem;
}

.thanks-info p {
    color: #475569;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.last-updated {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #334155;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #475569;
}

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

.legal-content a:hover {
    color: #1d4ed8;
}

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

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

    .nav-menu {
        gap: 1rem;
    }

    .section-intro h2,
    .featured-courses h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}