/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-blue: #002F6C;
    --gold: #FFD700;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --dark-grey: #333333;
    --text-grey: #666666;
    --border-grey: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

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

h3 {
    font-size: 1.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #001f4a;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--royal-blue);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-logo h2 {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0;
}

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

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

.nav-menu a:hover {
    color: var(--royal-blue);
}

.nav-cta {
    background: var(--royal-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-cta:hover {
    background: #001f4a;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 1rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

.dropdown-menu a {
    color: var(--dark-grey);
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    color: var(--royal-blue);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--royal-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 47, 108, 0.7), rgba(0, 47, 108, 0.7)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9e1?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--gold);
    color: var(--royal-blue);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlights Section */
.highlights {
    padding: 5rem 0;
    background: var(--light-grey);
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-blue);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-card h3 {
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.highlight-card p:first-of-type {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Pathway Section */
.pathway {
    padding: 5rem 0;
    background: var(--white);
}

.pathway h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-blue);
}

.pathway-interactive {
    max-width: 800px;
    margin: 0 auto;
}

.pathway-step {
    display: none;
    text-align: center;
}

.pathway-step.active {
    display: block;
}

.pathway-step h3 {
    margin-bottom: 2rem;
    color: var(--royal-blue);
}

.age-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-btn {
    background: var(--light-grey);
    border: 2px solid var(--border-grey);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.age-btn:hover,
.age-btn.active {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
}

.recommendation-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.recommendation-card h4 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}



/* Trust Section */
.trust {
    padding: 5rem 0;
    background: var(--white);
}

.trust h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-blue);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.partner-logo a {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
    border-radius: 5px;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-grey);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-section h3 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.team-info h4 {
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-info p {
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--royal-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-grey);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--royal-blue);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--royal-blue);
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--royal-blue);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-grey);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* WhatsApp Contact */
.whatsapp-contact {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 10px;
}

.whatsapp-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.whatsapp-header i {
    font-size: 2.5rem;
    color: #25D366;
}

.whatsapp-header h3 {
    color: var(--royal-blue);
    margin: 0;
}

.whatsapp-box p {
    color: var(--text-grey);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-grey);
}

.whatsapp-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* Footer */
.footer {
    background: var(--royal-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section a[href^="mailto:"] {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a[href^="mailto:"]:hover {
    color: var(--white);
    text-decoration: underline;
}

.newsletter h4 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter-form .btn {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--royal-blue);
    border: none;
}

.newsletter-form .btn:hover {
    background: #e6c200;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-section {
        order: -1;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }

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

    .language-toggle {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .highlight-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-contact {
        padding: 1.5rem;
    }
    
    .whatsapp-box {
        padding: 1.5rem;
    }
    
    .whatsapp-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .whatsapp-header i {
        font-size: 2rem;
    }
    
    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* WeChat Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--text-grey);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover,
.close:focus {
    color: var(--royal-blue);
}

.qr-code-container h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.qr-code-container p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.qr-code-image {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.qr-code-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-instructions {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-style: italic;
}

/* Privacy Policy Page */
.privacy-content {
    padding: 120px 0 5rem;
    background: var(--white);
}

.privacy-content h1 {
    color: var(--royal-blue);
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: var(--text-grey);
    font-style: italic;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--dark-grey);
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--dark-grey);
}

/* Language Education Section */
.language-education {
    padding: 5rem 0;
    background: var(--light-grey);
}

.language-education h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-blue);
}

.language-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.language-info h3 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.language-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-grey);
}

.exam-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.exam-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.exam-icon {
    width: 60px;
    height: 60px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.exam-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.exam-card h4 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.language-features {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.language-features h4 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.language-features ul {
    list-style: none;
    padding: 0;
}

.language-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.language-features i {
    color: var(--gold);
    font-size: 1.1rem;
}

.language-cta {
    background: var(--royal-blue);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.language-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.language-cta p {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.language-cta .btn {
    background: var(--gold);
    color: var(--royal-blue);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.language-cta .btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Responsive Design for Language Education */
@media (max-width: 768px) {
    .language-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exam-types {
        grid-template-columns: 1fr;
    }
    
    .language-cta {
        position: static;
    }
}

/* Language Training Section */

.language-training h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-blue);
}

.language-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.language-info h3 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.language-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-grey);
}

.exam-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.exam-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.exam-icon {
    width: 60px;
    height: 60px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.exam-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.exam-card h4 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.language-features {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.language-features h4 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.language-features ul {
    list-style: none;
    padding: 0;
}

.language-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.language-features i {
    color: var(--gold);
    font-size: 1.1rem;
}

.language-cta {
    background: var(--royal-blue);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.language-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.language-cta p {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.language-cta .btn {
    background: var(--gold);
    color: var(--royal-blue);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.language-cta .btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Responsive Design for Language Training */
@media (max-width: 768px) {
    .language-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exam-types {
        grid-template-columns: 1fr;
    }
    
    .language-cta {
        position: static;
    }
}

/* Union Jack Motif */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" opacity="0.1"><rect width="60" height="30" fill="none"/><path d="M0 0 L60 30 M60 0 L0 30" stroke="white" stroke-width="1"/><circle cx="30" cy="15" r="3" fill="white"/></svg>') repeat;
    pointer-events: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

