
        :root {
            --primary: #0d47a1;
            --primary-light: #5472d3;
            --primary-dark: #002171;
            --secondary: #f9a825;
            --dark: #1a237e;
            --light: #f5f7ff;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --success: #2e7d32;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        main {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 71, 161, 0.2);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: #000;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: #e69500;
            border-color: #e69500;
            color: #000;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.95));
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-section h1 {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--secondary);
            color: #000;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        /* Section Styling */
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        /* Services Grid Section - Replacing Stats */
        .services-grid-section {
            background: linear-gradient(rgba(26, 35, 126, 0.05), rgba(26, 35, 126, 0.08));
            padding: 80px 0;
        }
        
        .service-category-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .service-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-category-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }
        
        .service-price-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: #000;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Services Section */
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(13, 71, 161, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            font-size: 30px;
            color: var(--primary);
        }
        
        /* Car Fleet Section */
        .fleet-filter {
            background: var(--light);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .filter-btn {
            background: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            padding: 8px 20px;
            margin: 0 5px 10px;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .car-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .car-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        
        .car-info {
            padding: 25px;
        }
        
        .car-features {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .car-feature {
            display: flex;
            align-items: center;
        }
        
        .car-feature i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .car-price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .car-price span {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 400;
        }
        
        /* Comparison Table */
        .comparison-table {
            overflow-x: auto;
            margin: 40px 0;
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            border-left: 4px solid var(--secondary);
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 3rem;
            color: var(--secondary);
            position: absolute;
            left: -10px;
            top: -15px;
            opacity: 0.3;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: var(--light);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #eef2ff;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question {
            background: #eef2ff;
        }
        
        /* Booking Widget */
        .booking-widget {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 15px 30px rgba(13, 71, 161, 0.2);
        }
        
        .booking-widget h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .booking-form .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            margin-bottom: 15px;
        }
        
        .booking-form select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            margin-bottom: 15px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 70px 0;
                min-height: 60vh;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .booking-widget {
                padding: 25px;
            }
            
            .service-category-card {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        .focusable:focus {
            outline: 3px solid var(--secondary);
            outline-offset: 2px;
        }
        
        /* Print Styles */
        @media print {
            .btn, .booking-widget, .filter-btn {
                display: none;
            }
            
            body {
                background: white;
                color: black;
            }
        }
