
        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #00d4aa;
            --accent-color: #f8f9fa;
            --dark-color: #1a1a1a;
            --text-light: #6c757d;
            --danger-color: #dc3545;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
        }

       :root {
            --primary-color: #2c5aa0;
            --secondary-color: #00d4aa;
            --accent-color: #f8f9fa;
            --dark-color: #1a1a1a;
            --text-light: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }
       
        /* Top Header */
        .top-header {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }

        .header-icons i:hover {
            color: var(--secondary-color);
        }

        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem !important;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color) !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 20px 0 80px !important;
            overflow: hidden;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }

        .hero h1 {
            /* font-size: clamp(2.5rem, 5vw, 4rem); */
            font-size:50px !important;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: "Noto Serif", serif !important;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .search-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            border: none;
            border-radius: 50px 0 0 50px;
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
        }

        .search-btn {
            background: var(--secondary-color);
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 1rem 2rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #00b894;
            transform: translateY(-2px);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-family: "Noto Serif", serif !important;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: var(--accent-color);
        }

        .feature-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        /* Doctors Section */
        .doctors {
            padding: 80px 0;
            background: white;
        }

        .doctor-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .doctor-img {
            height: 250px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: var(--accent-color);
        }

        .service-item {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }

        .service-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
        }

        .about-image {
            height: 400px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--accent-color);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .top-header .container {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .hero {
                padding: 80px 0 60px;
                text-align: center;
            }

            .search-form {
                margin-top: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--secondary-color);
        }

        .btn-primary {
            background: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }

        .btn-primary:hover {
            background: #1e4a8a;
            border-color: #1e4a8a;
            transform: translateY(-2px);
        }

        .btn-outline-primary {
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
   
        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #00d4aa;
            --accent-color: #f8f9fa;
            --dark-color: #1a1a1a;
            --text-light: #6c757d;
        }
       
        /* Top Header */
        
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .header-icons i:hover {
            color: var(--secondary-color);
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        /* Lab Categories */
        .lab-category {
            text-align: center;
            padding: 2.5rem 1rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 3px solid transparent;
        }
        .lab-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }
        .lab-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
        }
        /* Test Cards */
        .test-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }
        .test-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .test-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        /* Booking Form */
        .booking-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        /* Results Section */
        .results-section {
            background: var(--accent-color);
            padding: 80px 0;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            .section-header h2 {
                font-size: 2rem;
            }
        }
        .btn-book {
            background: var(--secondary-color);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-book:hover {
            background: #00b894;
            transform: translateY(-2px);
            color: white;
        }
        .btn-primary-custom {
            background: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
        }
        .btn-primary-custom:hover {
            background: #1e4a8a;
            transform: translateY(-2px);
        }
    
        
        /* Top Header */
        
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .header-icons i:hover {
            color: var(--secondary-color);
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        /* Package Cards */
        .packages {
            padding: 80px 0;
            background: var(--accent-color);
        }
        .package-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }
        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        .package-tests {
            background: #f8f9ff;
            border-radius: 15px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            max-height: 200px;
            overflow-y: auto;
        }
        .test-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .test-item i {
            color: var(--secondary-color);
            margin-right: 0.75rem;
            width: 20px;
        }
        /* Comparison Table */
        .comparison-table {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            overflow-x: auto;
        }
        .table th {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1.5rem 1rem;
            font-weight: 600;
        }
        .table td {
            padding: 1.5rem 1rem;
            vertical-align: middle;
            border-color: #eee;
        }
        .feature-yes {
            color: var(--success-color);
            font-weight: 600;
        }
        .feature-no {
            color: #dc3545;
            font-weight: 600;
        }
        /* Booking Form */
        .booking-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        .form-step {
            display: none;
        }
        .form-step.active {
            display: block;
        }
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }
        .step-item {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        .step-item.active {
            background: var(--secondary-color);
            transform: scale(1.1);
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--success-color), #20c997);
            color: white;
            padding: 80px 0;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            .package-price {
                font-size: 2rem;
            }
            .step-indicator {
                overflow-x: auto;
                padding-bottom: 1rem;
            }
        }
        .btn-book {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 1rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            width: 100%;
        }
        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(44,90,160,0.4);
            color: white;
        }
   
        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #00d4aa;
            --accent-color: #f8f9fa;
            --dark-color: #1a1a1a;
            --text-light: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }
        
        /* Top Header */
        
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        /* Surgery Categories */
        .surgery-category {
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 3px solid transparent;
        }
        .surgery-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }
        .surgery-category.active {
            border-color: var(--secondary-color);
            background: linear-gradient(135deg, #f0f8ff, white);
        }
        .category-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        /* Cost Calculator */
        .cost-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        .cost-item {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .cost-item:last-child {
            border-bottom: none;
        }
        .cost-item:hover {
            background: var(--accent-color);
            border-radius: 10px;
        }
        .price-range {
            background: linear-gradient(90deg, var(--success-color), var(--warning-color));
            height: 8px;
            border-radius: 4px;
            margin-top: 0.5rem;
        }
        /* Summary Card */
        .summary-card {
            background: linear-gradient(135deg, var(--primary-color), #4a90e2);
            color: white;
            border-radius: 20px;
            padding: 2rem;
        }
        .total-cost {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        /* Comparison Table */
        .table-cost {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        .table-cost thead th {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 1.5rem;
        }
        .table-cost tbody td {
            padding: 1.5rem;
            vertical-align: middle;
            border-color: #eee;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            .section-header h2 {
                font-size: 2rem;
            }
        }
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        .btn-primary {
            background: var(--secondary-color);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background: #00b894;
            transform: translateY(-2px);
        }
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid #eee;
            padding: 0.75rem 1rem;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
        }
  
       
        /* Top Header */
       
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .header-icons i:hover {
            color: var(--secondary-color);
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), #4a90e2);
            color: white;
            padding: 20px 0 60px;
            position: relative;
        }
        .page-header h1 {
            font-size: 50px !important;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: "Noto Serif", serif !important;
        }
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 600px;
        }
        /* Filter Section */
        .filters {
            padding: 40px 0;
            background: var(--accent-color);
        }
        .filter-tabs .nav-link {
            border-radius: 50px;
            margin: 0 0.5rem;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            border: 2px solid transparent;
            color: var(--text-light);
        }
        .filter-tabs .nav-link.active {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }
        /* Packages Section */
        .packages-section {
            padding: 80px 0;
        }
        .package-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .package-img {
            height: 200px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        .package-body {
            padding: 2rem;
        }
        .package-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }
        .package-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--success-color);
            margin: 1rem 0;
        }
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        .package-features li {
            padding: 0.25rem 0;
            color: var(--text-light);
        }
        .package-features li i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
            width: 20px;
        }
        /* Pricing Table */
        .pricing-table {
            padding: 80px 0;
            background: var(--accent-color);
        }
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .pricing-card.popular {
            transform: scale(1.05);
            background: linear-gradient(135deg, #f8f9ff, #e8f4f8);
            border: 2px solid var(--secondary-color);
        }
        .pricing-card.popular .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            z-index: 2;
        }
        .pricing-price {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        .pricing-period {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), #4a90e2);
            color: white;
            text-align: center;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .top-header .container {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
            .page-header {
                padding: 60px 0 40px;
                text-align: center;
            }
            .pricing-price {
                font-size: 2.5rem;
            }
        }
        /* Buttons */
        .btn-primary {
            background: var(--secondary-color);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #00b894;
            transform: translateY(-2px);
            color: white;
        }
        .btn-outline-primary {
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        .btn-outline-primary:hover {
            background: var(--secondary-color);
            color: white;
        }

        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #00d4aa;
            --accent-color: #f8f9fa;
            --dark-color: #1a1a1a;
            --text-light: #6c757d;
        }
        /* Top Header */
        
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .header-icons i:hover {
            color: var(--secondary-color);
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }
        .page-header h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        /* About Hero */
        .about-hero {
            padding: 100px 0;
            background: var(--accent-color);
        }
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .stats-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
            margin-top: 0.5rem;
        }
        /* Timeline */
        .timeline {
            padding: 80px 0;
            background: white;
            position: relative;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            margin: 3rem 0;
            width: 50%;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
        }
        .timeline-icon {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            z-index: 2;
        }
        /* Team Section */
        .team {
            padding: 80px 0;
            background: var(--accent-color);
        }
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .team-img {
            height: 280px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }
        /* Values Section */
        .values {
            padding: 80px 0;
            background: white;
        }
        .value-card {
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 20px;
            background: var(--accent-color);
            height: 100%;
            transition: all 0.3s ease;
        }
        .value-card:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            transform: translateY(-10px);
        }
        .value-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            color: #00b894;
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #4a90e2);
            color: white;
            padding: 80px 0;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                left: 60px !important;
            }
            .timeline-item:nth-child(even) {
                left: 60px !important;
            }
        }
        @media (max-width: 768px) {
            .page-header {
                padding: 80px 0 50px;
                text-align: center;
            }
            .section-header h2 {
                font-size: 2rem;
            }
        }
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer h5 {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--secondary-color);
        }
        .btn-primary {
            background: var(--secondary-color);
            border: none;
            border-radius: 50px;
            padding: 1rem 2.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #00b894;
            transform: translateY(-2px);
        }
  
        /* Top Header */
       
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .header-icons i:hover {
            color: var(--secondary-color);
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }
        .page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .page-hero .breadcrumb {
            background: transparent;
            padding: 0;
        }
        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: white;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        /* Contact Info Cards */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            border: none;
        }
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }
        /* Contact Form */
        .contact-form-section {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        .form-control, .form-select {
            border-radius: 12px;
            border: 2px solid #e9ecef;
            padding: 0.875rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
        }
        .btn-primary {
            background: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #1e4a8a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
        }
        .alert {
            border-radius: 12px;
            border: none;
            padding: 1rem 1.5rem;
        }
        /* Map Section */
        .map-placeholder {
            height: 400px;
            background: linear-gradient(135deg, #f8f9ff, #e8f4f8);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px dashed var(--primary-color);
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .top-header .container {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
            .page-hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .contact-form-section {
                padding: 2rem 1.5rem;
            }
        }
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-link:hover {
            color: var(--secondary-color);
        }
        .header-icons a {
            color: white;
            text-decoration: none;
            /* margin-left: 1.5rem; */
            transition: color 0.3s ease;
        }
        .header-icons a:hover {
            color: var(--secondary-color);
        }
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        .cart-header {
            background: linear-gradient(135deg, var(--primary-color), #4a90e2);
            color: white;
            padding: 3rem 0;
        }
        .cart-item {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .cart-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }
        .quantity-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--accent-color);
            font-weight: 600;
            cursor: pointer;
        }
        .quantity-btn:hover {
            background: var(--primary-color);
            color: white;
        }
        .summary-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: sticky;
            top: 100px;
        }
        .btn-primary {
            background: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #1e4a8a;
            transform: translateY(-2px);
            color: white;
        }
        .btn-outline-primary {
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: white;
            transition: all 0.3s ease;
        }
        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
        }
        .btn-outline-danger {
            border-radius: 25px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            text-decoration: none;
            border: 2px solid #dc3545;
            color: #dc3545;
            background: white;
            transition: all 0.3s ease;
        }
        .btn-outline-danger:hover {
            background: #dc3545;
            color: white;
        }
        .empty-cart {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-light);
        }
        .empty-cart i {
            font-size: 6rem;
            color: #dee2e6;
            margin-bottom: 1rem;
        }
        .img-placeholder {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .summary-card {
                margin-top: 2rem;
                position: static;
            }
        }
    
        .header-icons i {
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .header-icons i:hover {
            color: var(--secondary-color);
        }
        /* Navigation */
        .navbar {
            padding: 0.5rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 600px;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        /* FAQ Categories */
        .faq-category {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        .faq-category h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            font-size: 1.5rem;
        }
        /* FAQ Accordion */
        .faq-accordion .accordion-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
            background: transparent;
        }
        .faq-accordion .accordion-button {
            background: transparent !important;
            border: none !important;
            padding: 1.5rem 0;
            font-weight: 500;
            color: var(--dark-color);
            box-shadow: none !important;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background: transparent !important;
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .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='%232c5aa0'%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");
            transition: transform 0.3s ease;
        }
        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c5aa0'%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");
            transform: rotate(180deg);
        }
        .faq-accordion .accordion-body {
            padding: 0 0 1.5rem 0;
            color: var(--text-light);
            font-size: 1rem;
        }
        /* Search FAQ */
        .faq-search {
            max-width: 500px;
            margin: 0 auto 3rem;
        }
        .faq-search .form-control {
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            border: 2px solid #e9ecef;
            font-size: 1rem;
        }
        .faq-search .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
        }
        /* Stats */
        .faq-stats {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 3rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }
        /* Contact CTA */
        .cta-section {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .top-header .container {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
            .hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            .faq-category {
                padding: 1.5rem;
            }
        }
        /* Footer styles same as main site */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer h5 {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--secondary-color);
        }
        .btn-primary {
            background: var(--secondary-color);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #00b894;
            transform: translateY(-2px);
        }
   