<!-- Landing Page Specific Styles -->
    <style>
        /* Header Navigation */
        .landing-header {
            background-color: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .landing-header .navbar-brand img {
            max-height: 50px;
            width: auto;
        }

        .landing-nav-link {
            color: #4b5563;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .landing-nav-link:hover {
            color: #1e7dd9;
        }

        .landing-nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #1e7dd9;
            transition: width 0.3s ease;
        }

        .landing-nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
            padding: 60px 0;
            margin-bottom: 80px;
        }

        .hero-heading {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: #1a1d29;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subheading {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .search-form-group {
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .search-form-group .form-control {
            height: 48px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.9375rem;
            transition: all 0.3s ease;
        }

        .search-form-group .form-control:focus {
            border-color: #1e7dd9;
            box-shadow: 0 0 0 3px rgba(30, 125, 217, 0.1);
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #1e7dd9;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* Section Heading */
        .section-heading {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            color: #1a1d29;
            margin-bottom: 15px;
            text-align: center;
        }

        .section-subheading {
            font-size: 1rem;
            color: #6b7280;
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Cities Section */
        .city-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .city-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .city-card-image {
            width: 100%;
            height: 200px;
            background:linear-gradient(135deg, #7ec8ff 0%, #5eb3ff 100%);
            /*background: linear-gradient(135deg, #a8d8ff 0%, #7ec8ff 100%);*/
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .city-card-body {
            padding: 20px;
        }

        .city-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 8px;
        }

        .city-count {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .city-link {
            color: #1e7dd9;
            font-weight: 500;
            font-size: 0.9375rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .city-link:hover {
            color: #1565b8;
            text-decoration: underline;
        }

        /* Category Cards */
        .category-card {
            background: white;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .category-card:hover {
            border-color: #1e7dd9;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .category-icon {
            font-size: 2.5rem;
            color: #1e7dd9;
            margin-bottom: 15px;
        }

        .category-name {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 0;
        }

        /* How It Works Section */
        .how-it-works {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
            padding: 60px 0;
            margin-bottom: 80px;
        }

        .step-item {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #1e7dd9;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto 20px;
            box-shadow: 0 4px 12px rgba(30, 125, 217, 0.3);
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 10px;
        }

        .step-description {
            font-size: 0.9375rem;
            color: #6b7280;
            line-height: 1.6;
        }

        .step-connector {
            display: none;
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #d1dce6;
            z-index: 0;
        }

        @media (min-width: 992px) {
            .step-connector {
                display: block;
            }

            .step-connector.last {
                display: none;
            }
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            margin-bottom: 80px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #f0f4ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.75rem;
            color: #1e7dd9;
        }

        .feature-content h5 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 8px;
        }

        .feature-content p {
            font-size: 0.9375rem;
            color: #6b7280;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* School Cards */
        .school-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .school-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .school-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #c7e9ff 0%, #a8d8ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .school-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0);
            transition: background 0.3s ease;
        }

        .school-card:hover .school-card-image::before {
            background: rgba(30, 125, 217, 0.1);
        }

        .school-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .school-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 8px;
        }

        .school-meta {
            font-size: 0.8125rem;
            color: #6b7280;
            margin-bottom: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .school-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .school-info {
            font-size: 0.875rem;
            color: #4b5563;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .school-badge {
            display: inline-block;
            background: #f0fdf4;
            color: #16a34a;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .school-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }

        .school-actions .btn {
            flex: 1;
            padding: 10px 12px;
            font-size: 0.875rem;
            height: auto;
            border-radius: 8px;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .testimonial-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .testimonial-stars {
            font-size: 1rem;
            color: #fbbf24;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 0.9375rem;
            color: #4b5563;
            margin-bottom: 20px;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1d29;
        }

        .testimonial-role {
            font-size: 0.8125rem;
            color: #6b7280;
        }

        /* CTA Sections */
        .cta-section {
            background: linear-gradient(135deg, #1e7dd9 0%, #1565b8 100%);
            color: white;
            padding: 60px;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 80px;
        }

        .cta-section h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.0625rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Accordion */
        .accordion-button {
            background-color: #f8f9fb;
            border: 1px solid #e5e7eb;
            color: #1a1d29;
            font-weight: 600;
            font-size: 1rem;
            padding: 16px 24px;
        }

        .accordion-button:not(.collapsed) {
            background-color: #f0f4ff;
            color: #1e7dd9;
        }

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

        .accordion-body {
            padding: 24px;
            color: #4b5563;
            font-size: 0.9375rem;
            line-height: 1.8;
        }

        /* Newsletter */
        .newsletter-form {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .newsletter-form h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 10px;
        }

        .newsletter-form p {
            font-size: 0.9375rem;
            color: #6b7280;
            margin-bottom: 20px;
        }

        .newsletter-form .form-control {
            height: 48px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            font-size: 0.9375rem;
        }

        /* Footer */
        .landing-footer {
            background: #1a1d29;
            color: #d1d5db;
            padding: 60px 0 20px;
            margin-top: 80px;
        }

        .landing-footer h5 {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .landing-footer a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.9375rem;
            line-height: 2;
            transition: color 0.3s ease;
        }

        .landing-footer a:hover {
            color: #1e7dd9;
        }

        .footer-divider {
            border-top: 1px solid #374151;
            margin: 30px 0;
            padding-top: 30px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #374151;
            border-radius: 50%;
            color: white;
            font-size: 1.125rem;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #1e7dd9;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 0;
                margin-bottom: 60px;
            }

            .search-form-group {
                padding: 16px;
            }

            .hero-stats {
                gap: 20px;
                margin-top: 30px;
            }

            .step-connector {
                display: none !important;
            }

            .how-it-works {
                padding: 40px 0;
                margin-bottom: 60px;
            }

            .cta-section {
                padding: 40px;
                margin-bottom: 60px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .hero-heading {
                font-size: 1.75rem;
            }

            .section-heading {
                font-size: 1.5rem;
            }

            .stat-item {
                flex: 0 0 calc(50% - 15px);
            }

            .search-form-group {
                padding: 12px;
            }

            .search-form-group .form-control {
                margin-bottom: 12px;
            }

            .cta-section {
                padding: 30px 20px;
            }
        }