/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scroll Entrance Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

img {
    max-width: 100%;
    display: block;
}

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

/* ===================== Navbar ===================== */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__logo-img {
    height: 60px;
    width: auto;
}

.navbar__cta {
    display: inline-block;
    background: #0a1a3a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.navbar__cta:hover {
    background: #142a54;
}

.navbar__cta-mobile {
    display: none;
}

/* ===================== Hero Section ===================== */
.hero {
    background: #f5f7fa;
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero__content {
    flex: 1;
    max-width: 540px;
}

.hero__title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #0a1a3a;
    margin-bottom: 20px;
}

.hero__highlight {
    background: linear-gradient(to right, #fcd34d 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    padding: 2px 8px;
    font-style: italic;
    display: inline;
    transition: background-position 0.6s ease 0.8s;
}

.hero__title.visible .hero__highlight {
    background-position: left;
}

.hero__text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fcd34d;
    color: #0a1a3a;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.hero__btn:hover {
    background: #f5c518;
}

.hero__btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero__btn:hover .hero__btn-arrow {
    transform: translateX(4px);
}

/* Hero Image */
.hero__image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
}

.hero__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0a1a3a;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero__badge-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.hero__card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero__card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__card-label {
    font-size: 12px;
    font-weight: 600;
    color: #d97706;
}

.hero__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3a;
}

.hero__card-desc {
    font-size: 13px;
    color: #777;
}

.hero__card-icon {
    width: 42px;
    height: 42px;
    background: #fcd34d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0a1a3a;
    flex-shrink: 0;
}

/* ===================== Eligibility Section ===================== */
.eligibility {
    padding: 70px 0 80px;
    background: #fff;
}

.eligibility__title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1a3a;
    text-align: center;
    margin-bottom: 12px;
}

.eligibility__subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.eligibility__card {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

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

.form-group__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0a1a3a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-group__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-group__options--half .form-option {
    flex: 1;
    min-width: 0;
}

.form-group__options--third .form-option {
    flex: 1;
    min-width: 0;
}

.form-option {
    padding: 12px 24px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.form-option:hover {
    border-color: #0a1a3a;
}

.form-option.active {
    background: #dbeafe;
    border-color: #0a1a3a;
    color: #0a1a3a;
    font-weight: 600;
}

.form-group__inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.form-group__inputs input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    background: #e8ecf0;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: background 0.2s ease;
}

.form-group__inputs input::placeholder {
    color: #888;
}

.form-group__inputs input:focus {
    background: #dce1e7;
}

.input-phone {
    flex: 1;
    display: flex;
    align-items: center;
    background: #e8ecf0;
    border-radius: 8px;
    overflow: hidden;
}

.input-phone__prefix {
    padding: 14px 12px 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #0a1a3a;
    white-space: nowrap;
    user-select: none;
}

.input-phone input {
    flex: 1;
    padding: 14px 16px 14px 0;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
}

.input-phone input::placeholder {
    color: #888;
}

.eligibility__submit {
    width: 100%;
    padding: 18px;
    background: #0f6b5e;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.eligibility__submit:hover {
    background: #0b5a4e;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f6b5e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast__icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* ===================== Why Choose Us ===================== */
.why-us {
    padding: 70px 0 80px;
    background: #f9fafb;
}

.why-us__title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1a3a;
    margin-bottom: 14px;
}

.why-us__subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 50px;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px 24px;
}

.why-us__icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1a3a;
    margin-bottom: 20px;
}

.why-us__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a1a3a;
    margin-bottom: 10px;
}

.why-us__card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ===================== Communities Section ===================== */
.communities {
    padding: 80px 0;
    background: #fff;
}

.communities__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.communities__content {
    flex: 1;
    max-width: 500px;
}

.communities__title {
    font-size: 38px;
    font-weight: 800;
    color: #0a1a3a;
    line-height: 1.15;
    margin-bottom: 16px;
}

.communities__text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.communities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.communities__card {
    padding: 24px;
    border: 1px solid #f0f0f0;
}

.communities__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.communities__icon--blue {
    background: #dbeafe;
    color: #0a1a3a;
}

.communities__icon--yellow {
    background: #fef3c7;
    color: #92400e;
}

.communities__icon--dark {
    background: #1e293b;
    color: #fff;
}

.communities__card-label {
    font-size: 14px;
    font-weight: 600;
    color: #0a1a3a;
}

/* Communities Image */
.communities__image-wrapper {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.communities__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.communities__overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.communities__popup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(16px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.communities__popup.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.communities__overlay-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.communities__overlay-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.communities__overlay-text span {
    font-size: 13px;
    color: #555;
}

.communities__overlay-text strong {
    font-size: 14px;
    color: #0a1a3a;
}

/* ===================== Degrees Section ===================== */
.degrees {
    padding: 70px 0 80px;
    background: #041a35;
}

.degrees__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.degrees__header-content {
    max-width: 680px;
}

.degrees__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.degrees__text {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
}

.degrees__cta {
    display: inline-block;
    background: #f5a623;
    color: #0a1a3a;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.3s ease;
    flex-shrink: 0;
    margin-top: 4px;
}

.degrees__cta:hover {
    background: #e6951a;
}

.degrees__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.degrees__card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 3px solid #f5a623;
    transition: background 0.3s ease;
}

.degrees__card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.degrees__card-icon {
    color: #f5a623;
}

.degrees__card-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* ===================== Testimonials Section ===================== */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials__title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1a3a;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials__marquee {
    overflow: hidden;
    position: relative;
}

.testimonials__track {
    display: flex;
    gap: 24px;
    animation: testimonialScroll 30s linear infinite;
    width: max-content;
}

.testimonials__marquee:hover .testimonials__track {
    animation-play-state: paused;
}

.testimonials__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    width: 380px;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials__header {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.testimonials__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonials__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonials__name {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3a;
}

.testimonials__role {
    font-size: 13px;
    color: #888;
}

.testimonials__quote {
    font-size: 48px;
    font-weight: 700;
    color: #fcd34d;
    line-height: 1;
    margin-left: auto;
    align-self: flex-start;
}

.testimonials__text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.testimonials__stars {
    display: flex;
    gap: 2px;
}

.testimonials__stars .star {
    font-size: 18px;
}

.testimonials__stars .star.filled {
    color: #d4a017;
}

.testimonials__stars .star.empty {
    color: #d1d5db;
}

/* ===================== CTA Section ===================== */
.cta-section {
    padding: 70px 0 80px;
    background: #fff;
}

.cta-card {
    background: linear-gradient(135deg, #0a1a3a 0%, #0d2a5c 100%);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
}

.cta-card__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
}

.cta-card__title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 780px;
    margin: 0 auto 20px;
}

.cta-card__text {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-card__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cta-card__btn {
    display: inline-block;
    background: #f5a623;
    color: #0a1a3a;
    padding: 18px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.cta-card__btn:hover {
    background: #e6951a;
}

.cta-card__phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-card__phone-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-card__phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.cta-card__phone-number:hover {
    color: #f5a623;
}

/* ===================== Legal Pages ===================== */
.legal-page {
    padding: 60px 0 80px;
}

.legal-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1a3a;
    margin-bottom: 6px;
}

.legal-page__updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page__content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0a1a3a;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page__content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-page__content p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-page__content ul,
.legal-page__content ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.legal-page__content li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-page__content a {
    color: #0a1a3a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page__content a:hover {
    color: #f5a623;
}

.legal-page__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 14px;
}

.legal-page__table th,
.legal-page__table td {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    color: #444;
}

.legal-page__table th {
    background: #f5f7fa;
    font-weight: 600;
    color: #0a1a3a;
}

.legal-page__table tr:nth-child(even) td {
    background: #fafbfc;
}

/* ===================== FAQ ===================== */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.faq__title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1a3a;
    margin-bottom: 12px;
}

.faq__subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
}

.faq__list {
    max-width: 780px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.faq__item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a1a3a;
    transition: color 0.2s;
}

.faq__question:hover {
    color: #f5a623;
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #0a1a3a;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    color: #f5a623;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding: 0 4px;
}

.faq__answer a {
    color: #0a1a3a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq__answer a:hover {
    color: #f5a623;
}

/* ===================== Footer ===================== */
.footer {
    background-color: #f5f7fa;
    padding: 50px 0 30px;
    border-top: 1px solid #e5e7eb;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer__logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer__contact-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a1a3a;
    margin-bottom: 10px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.footer__contact-item:hover {
    color: #0a1a3a;
}

.footer__contact-item svg {
    flex-shrink: 0;
    color: #0a1a3a;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer__link {
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #0a1a3a;
}

.footer__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.footer__copyright {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* ===================== Mobile ===================== */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar__logo-img {
        height: 35px;
    }

    .navbar__cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    .navbar__cta-full {
        display: none;
    }

    .navbar__cta-mobile {
        display: inline;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 0 50px;
    }

    .hero__inner {
        flex-direction: column;
        gap: 30px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero__btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .hero__image-wrapper {
        max-width: 100%;
    }

    .hero__image {
        height: 400px;
        border-radius: 16px;
    }

    .hero__card {
        left: 10px;
        right: 10px;
        bottom: 12px;
    }

    /* Eligibility Mobile */
    .eligibility {
        padding: 50px 0 60px;
    }

    .eligibility__title {
        font-size: 26px;
    }

    .eligibility__subtitle {
        font-size: 14px;
    }

    .eligibility__card {
        padding: 25px 20px;
    }

    .form-group__options--half .form-option,
    .form-group__options--third .form-option {
        flex: none;
        width: 100%;
    }

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

    .eligibility__submit {
        font-size: 14px;
        padding: 16px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 40px 0 50px;
    }

    .cta-card {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .cta-card__title {
        font-size: 26px;
    }

    .cta-card__text {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .cta-card__actions {
        flex-direction: column;
        gap: 20px;
    }

    .cta-card__btn {
        width: 100%;
        text-align: center;
        padding: 16px 28px;
    }

    .cta-card__phone {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 50px 0 60px;
    }

    .testimonials__title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .testimonials__card {
        width: 300px;
    }

    .testimonials__track {
        gap: 16px;
    }

    /* Degrees Mobile */
    .degrees {
        padding: 50px 0 60px;
    }

    .degrees__header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .degrees__title {
        font-size: 26px;
    }

    .degrees__text {
        font-size: 14px;
    }

    .degrees__cta {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .degrees__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Communities Mobile */
    .communities {
        padding: 50px 0 60px;
    }

    .communities__inner {
        flex-direction: column;
        gap: 30px;
    }

    .communities__content {
        max-width: 100%;
    }

    .communities__title {
        font-size: 28px;
    }

    .communities__text {
        margin-bottom: 25px;
    }

    .communities__image {
        height: 380px;
    }

    .communities__image-wrapper {
        max-width: 100%;
    }

    /* Why Choose Us Mobile */
    .why-us {
        padding: 50px 0 60px;
    }

    .why-us__title {
        font-size: 28px;
    }

    .why-us__subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* FAQ Mobile */
    .faq {
        padding: 50px 0 60px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__subtitle {
        font-size: 14px;
    }

    .faq__question {
        font-size: 15px;
        padding: 18px 4px;
    }

    .faq__answer p {
        font-size: 14px;
    }

    /* Legal Pages Mobile */
    .legal-page {
        padding: 40px 0 60px;
    }

    .legal-page__title {
        font-size: 28px;
    }

    .legal-page__content h2 {
        font-size: 19px;
        margin-top: 28px;
    }

    .legal-page__table {
        font-size: 13px;
    }

    .legal-page__table th,
    .legal-page__table td {
        padding: 8px 10px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 25px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer__left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        text-align: center;
    }

    .footer__bottom {
        text-align: center;
    }

    .footer__copyright {
        font-size: 12px;
    }
}
