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

:root {
    --primary-blue: #003366;
    --light-blue: #3399FF;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #495057;
    --shadow: rgba(0, 51, 102, 0.1);
    --shadow-hover: rgba(0, 51, 102, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Professional Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 500;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    color: var(--dark-gray);
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
}

.text-large {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-badge {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-left: 10px;
}

.brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.005em;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(51, 153, 255, 0.6)), url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 32px;
    line-height: 1.4;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    font-style: italic;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.partner-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(51, 153, 255, 0.3);
    text-transform: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(51, 153, 255, 0.4);
}


/* Section Styles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 2px;
}

/* Schools Section */
.schools {
    padding: 100px 0;
    background: var(--white);
}

.schools-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.schools-grid::-webkit-scrollbar {
    display: none;
}

.schools-wrapper {
    position: relative;
    overflow: hidden;
}

.swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-nav:hover {
    background: var(--light-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.swiper-nav.prev {
    left: -25px;
}

.swiper-nav.next {
    right: -25px;
}

.swiper-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-nav:disabled:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1);
}

.school-card {
    background: var(--white);
    border-radius: 8px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 0 0 350px;
    min-width: 350px;
}

.school-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-color: var(--light-blue);
}

.school-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.school-logo i {
    font-size: 35px;
    color: var(--white);
}

.school-logo-img {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.school-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.school-level {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.school-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.school-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    text-transform: none;
}

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

.btn-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Guide Section */
.guide {
    padding: 100px 0;
    background: var(--light-gray);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 153, 255, 0.1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--light-blue);
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.step-icon i {
    font-size: 52px;
    color: var(--primary-blue);
    background: var(--white);
    padding: 32px;
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-icon i {
    color: var(--light-blue);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(51, 153, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(51, 153, 255, 0.4);
}

.step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.step p {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    letter-spacing: -0.005em;
    max-width: 100%;
}

.step ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    letter-spacing: -0.005em;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.step li:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--light-blue);
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Step 1 Icons */
.step li.icon-form:before {
    content: "\f044";
}

/* fa-edit */
.step li.icon-payment:before {
    content: "\f3d1";
}

/* fa-credit-card */
.step li.icon-save:before {
    content: "\f0c7";
}

/* fa-save */
.step li.icon-qr:before {
    content: "\f029";
}

/* fa-qrcode */

/* Step 2 Icons */
.step li.icon-verify:before {
    content: "\f058";
}

/* fa-check-circle */
.step li.icon-phone:before {
    content: "\f095";
}

/* fa-phone */
.step li.icon-monitor:before {
    content: "\f108";
}

/* fa-desktop */

/* Step 3 Icons */
.step li.icon-announce:before {
    content: "\f0a1";
}

/* fa-bullhorn */
.step li.icon-check:before {
    content: "\f00c";
}

/* fa-check */

/* Step 4 Icons */
.step li.icon-register:before {
    content: "\f2c1";
}

/* fa-user-plus */
.step li.icon-complete:before {
    content: "\f058";
}

/* fa-check-circle */
.step li.icon-document:before {
    content: "\f15c";
}

/* fa-file-alt */

.guide-download {
    text-align: center;
}

.btn-download {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
    text-transform: none;
}

.btn-download:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.4);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 28px 32px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--light-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--light-gray);
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.7;
    letter-spacing: -0.005em;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    line-height: 1.5;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 400;
}

.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--white);
}

.contact-item i {
    color: var(--light-blue);
    width: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: var(--light-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px var(--shadow);
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .nav-menu ul {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .schools-grid {
        gap: 20px;
    }

    .school-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step {
        padding: 35px 25px;
    }

    .step h3 {
        font-size: 1.375rem;
        margin-bottom: 18px;
    }

    .step p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .step li {
        font-size: 0.9375rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .step li:before {
        font-size: 0.9rem;
    }

    .step-icon i {
        font-size: 48px;
        padding: 28px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .faq-question {
        padding: 24px 28px;
        font-size: 1.0625rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .brand-text {
        font-size: 1.125rem;
    }

    .nav-menu a {
        font-size: 0.875rem;
    }

    .school-card {
        padding: 32px 24px;
    }

    .school-logo-img {
        width: 140px;
        height: 140px;
        margin: 0 auto 20px;
    }

    .school-name {
        font-size: 1.25rem;
    }

    .school-level {
        font-size: 0.8125rem;
        padding: 8px 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 0.8125rem;
    }

    .cta-button,
    .btn-download {
        padding: 18px 32px;
        font-size: 1.0625rem;
    }

    .partner-logos {
        gap: 24px;
        margin: 32px 0;
    }

    .partner-logo {
        height: 65px;
        padding: 8px;
        border-radius: 6px;
    }

    .step h3 {
        font-size: 1.0625rem;
    }

    .step p {
        font-size: 0.875rem;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 1rem;
        line-height: 1.3;
    }

    .faq-answer p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .footer-brand h3 {
        font-size: 1.375rem;
    }

    .footer-contact h4 {
        font-size: 1.125rem;
    }

    .contact-item {
        font-size: 0.9375rem;
    }

    .schools-grid {
        gap: 15px;
    }

    .school-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .swiper-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .swiper-nav.prev {
        left: -20px;
    }

    .swiper-nav.next {
        right: -20px;
    }

    .hero-title {
        white-space: normal;
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    /* Footer mobile styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--light-blue);
    outline-offset: 2px;
}