/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --gradient-start: #1e5cb3;
    --gradient-mid: #2563eb;
    --gradient-end: #06b6d4;
    --light-green: #f0fdf4;
    --dark-navy: #1e293b;
    --text-muted: #64748b;
    --footer-bg: #1f2937;
    --footer-text: #9ca3af;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:400!important;
}


/* Horizontal Scroll Container - Mobile */
/* Remove side padding on mobile */
.lessons-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0; /* Change from 'padding: 0 1rem;' to 'padding: 0;' */
    -webkit-overflow-scrolling: touch;
}

/* Mobile: Each card takes full width */
.lesson-card-wrapper {
    flex: 0 0 100%; /* Full width */
    scroll-snap-align: center;
    min-width: 280px;
    padding: 0 1rem; /* Add padding here instead */
}

/* Hide scrollbar but keep functionality */
.lessons-scroll-container::-webkit-scrollbar {
    display: none;
}

.lessons-scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn i {
    font-size: 1.25rem;
    color: #2563eb;
}

.carousel-nav-prev {
    left: 0;
}

.carousel-nav-next {
    right: 0;
}

/* Tablet and Desktop: Grid layout */
@media (min-width: 768px) {
    .lessons-scroll-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 1rem;
    }

    .lesson-card-wrapper {
        flex: none;
        min-width: auto;
    }

    .carousel-nav-btn {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .lessons-scroll-container {
        grid-template-columns: repeat(4, 1fr);
    }
}


.max-container-compact {
    max-width: 1000px;
}

/* Global Styles */
/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Play Button */
.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn i {
    font-size: 5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.video-play-btn:hover i {
    transform: scale(1.1);
    color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .video-play-btn i {
        font-size: 3.5rem;
    }
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

section {
    padding-top:8rem!important;
    padding-bottom:8rem!important;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-form-card {
    border: none;
    border-radius: 20px;
    background: white;
}

.hero-form-card .card-body {
    padding: 2.5rem 2rem !important;
}

.hero-form-card .form-label {
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    background-color: #fffffb;
    border: 0px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hero-form-card .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1.05rem;
    background-color: #2563eb;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.hero-form-card .btn-primary:hover {
    background-color: #1d4ed8;
    box-shadow: 0 6px 8px -1px rgba(37, 99, 235, 0.4);
}

/* Background Gradients */
.bg-gradient-light {
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.bg-light-green {
    background: linear-gradient(to bottom, #f0fdf4 0%, #dcfce7 100%);
}

.bg-light-blue {
    background: linear-gradient(to bottom, #f9fdff 0%, #eafde9 100%);
}

.bg-light-pink {
    background: linear-gradient(to bottom, #fff9f9 0%, #fff2f2 100%);
}

.bg-light-gray {
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
}

/* Pricing Cards */
.pricing-card-new .card-body {
    padding: 1.25rem !important;
}

.pricing-card-new h6 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
}

.pricing-card-new .price-section-green {
    background: #dcfae4;
    padding: 12px 16px;
    border-radius: 10px;
    display: block;
}

.pricing-card-new .price-label {
    color: #047857;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2px;
}

.pricing-card-new .price-savings {
    color: rgba(90, 90, 90, 0.85);
    float: right;
    margin-top: 4px;
    font-size: 0.675rem;
    font-weight: 500;
}

.pricing-card-new .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Badge Styles */
.badge-new {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-available {
    background-color: #dcfae4;
    color: #317840;
}

.badge-yellow {
    background-color: #fbf2c1;
    color: #833b12;
}

.badge-license-type {
    background-color: #e6f7ff;
    color: #0047ab;
}

.badge-quality-new {
    background-color: #06b6d4;
    color: white;
}

.badge-recommended-new {
    background-color: #8b5cf6;
    color: white;
}

.badge-sm {
    font-size: 0.7rem;
    padding: 6px 9px;
    border-radius: 4px;
    font-weight: 500;
}

/* Pricing Card Content */
.pricing-card-new h6 {
    font-size: 1rem;
    color: #1e293b;
}

.pricing-card-new .text-success {
    color: #10b981 !important;
}

.pricing-card-new .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card-new .btn-outline-primary {
    border: 1.5px solid #2563eb;
    color: #2563eb;
}

.pricing-card-new .btn-outline-primary:hover {
    background-color: #2563eb;
    color: white;
}

.pricing-card-new .btn-primary {
    background-color: #2563eb;
    border: none;
}

.pricing-card-new .btn-primary:hover {
    background-color: #1d4ed8;
}

/* School Cards */
.school-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.school-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.school-info {
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.school-logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.school-card h5 {
    font-size: 1.1rem;
    color: #1e293b;
}

.rating {
    display: flex;
    align-items: center;
}

.school-features li {
    color: #475569;
}

.school-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    border-radius: 14px;
}

/* Perfect School Banner */
.perfect-school-banner {
    background: linear-gradient(to right, rgba(59, 76, 119, 0.95), rgba(30, 41, 59, 0.85)),
    url('https://placehold.co/1400x300/334155/ffffff?text=Background') center/cover;
    min-height: 280px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.perfect-school-overlay {
    z-index: 1;
    max-width: 600px;
}

.perfect-school-banner h3 {
    font-size: 2rem;
    font-weight: 700;
}

.perfect-school-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Feature Package Cards */
.feature-package-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-package-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.package-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.package-badge-green {
    background-color: #d1fae5;
    color: #047857;
}

.feature-package-card h5 {
    font-size: 1.25rem;
    color: #1e293b;
}

.package-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-feature-list li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
}

.package-feature-list li i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Additional Options Card */
.additional-options-card {
    background: white;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.additional-options-card h5 {
    font-size: 1.35rem;
    color: #1e293b;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options-list li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
}

.options-list li i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Benefit Feature Cards */
.benefit-feature-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.bg-success-gradient {
    background: linear-gradient(135deg, #47fbbf 0%, #059669 100%);
}

.bg-info-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #58ffe6 100%);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #de33ea 100%);
}

.benefit-feature-card h5 {
    font-size: 1.15rem;
    color: #1e293b;
}

.benefit-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Success Stories Grid */
.success-stories-grid {
    position: relative;
    z-index: 10;
    margin-top: 60px;
    margin-bottom: -300px;
    /*padding-bottom: 50px;*/
}

.success-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    aspect-ratio: 3 / 4; /* or 2 / 3, depending on your preference */
    width: 100%;
}

.success-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.success-story-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Modern Feature Cards */
.modern-driving-section .container {
    padding-top:180px;
}
.modern-feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.modern-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.modern-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-red-gradient {
    background: linear-gradient(135deg, #ef7744 0%, #dc2666 100%);
}

.bg-cyan-gradient {
    background: linear-gradient(135deg, #0ea7c1 0%, #0ecdd5 100%);
}

.bg-orange-gradient {
    background: linear-gradient(135deg, #ffc58e 0%, #faa67b 100%);
}

.modern-feature-card h5 {
    font-size: 1.15rem;
    color: #1e293b;
}

.modern-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-feature-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.modern-feature-list li i {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, #fffdf3 0%, #fff9dd 100%);
    border: none;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 0;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: white;
    color: #1e293b;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: white;
    color: #1e293b;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23475569'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    flex-shrink: 0;
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer Section - CENTERED NO LINES */
.footer-section-centered {
    background: var(--footer-bg);
    padding: 60px 0 50px;
}

.text-footer-muted {
    color: #646978;
    font-size: 0.9rem;
}

.footer-link-centered {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link-centered:hover {
    color: white;
}

.footer-contact-centered {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-contact-centered:hover {
    color: white;
}

.footer-contact-centered i {
    color: var(--footer-text);
}

.footer-legal-centered {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal-centered:hover {
    color: white;
}

.footer-cities-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-city-centered {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-city-centered:hover {
    color: white;
}

/* Dark Image Banner */
.dark-image-banner {
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)),
    url('https://placehold.co/1200x300/334155/ffffff?text=Background') center/cover;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dark-banner-overlay {
    z-index: 1;
    padding: 3rem 2rem;
}

.dark-image-banner h3 {
    font-size: 1.75rem;
}

/* Old Styles (keeping for compatibility) */
.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.badge-popular {
    background-color: #10b981;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-rated {
    background-color: #f59e0b;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-quality {
    background-color: #06b6d4;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-recommended {
    background-color: #8b5cf6;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.location-info-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.location-icon {
    font-size: 3rem;
    color: var(--primary-blue);
}

.location-icon-yellow {
    font-size: 3rem;
    color: #f59e0b;
}

.location-image {
    object-fit: cover;
    height: 100%;
    min-height: 300px;
}

.dark-cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
}

.feature-white-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #475569;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.bg-success-soft {
    background-color: #dcfce7;
}

.bg-info-soft {
    background-color: #dbeafe;
}

.bg-primary-soft {
    background-color: #dbeafe;
}

.bg-danger-soft {
    background-color: #fee2e2;
}

.bg-warning-soft {
    background-color: #fef3c7;
}

.modern-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.modern-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #475569;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 400;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
}

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

.rounded-pill {
    border-radius: 50px !important;
}

/* Accordion - OLD */
.accordion-button {
    background-color: white;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #eff6ff;
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e2e8f0;
}

.accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-body {
    color: #475569;
    font-size: 0.9rem;
}

/* Footer - OLD (Keeping for compatibility) */
.footer-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: white;
}

.footer-contact {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-blue);
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form-card .card-body {
        padding: 2rem 1.5rem !important;
    }

    .location-image {
        min-height: 250px;
    }

    .school-card .row {
        flex-direction: column;
    }

    .school-card .col-5,
    .school-card .col-7 {
        width: 100%;
    }

    .school-image {
        min-height: 250px;
    }

    .feature-package-card {
        padding: 24px 20px;
    }

    .additional-options-card {
        padding: 28px 20px;
    }

    .benefit-feature-card {
        padding: 28px 20px;
    }

    .success-stories-grid {
        padding-bottom: 100px;
    }

    .modern-feature-card {
        padding: 24px 20px;
    }

    .faq-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .faq-accordion .accordion-body {
        padding: 1rem 1.25rem;
    }

    .footer-section-centered {
        padding: 40px 0 30px;
    }

    .footer-contact-centered,
    .footer-legal-centered {
        font-size: 0.8rem;
    }

    .footer-city-centered {
        font-size: 0.8rem;
    }
}