
        :root {
            --primary: #1A73E8;
            --secondary: #5F6368;
            --accent: #E8F0FE;
            --background: #FFFFFF;
            --text: #202124;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text);
            line-height: 1.6;
        }
        
        /* Navbar Styles - Centered */
        .navbar-nav {
            margin: 0 auto;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.5rem 1.5rem;
        }
        
        .btn-primary:hover {
            background-color: #0d5ebe;
            border-color: #0d5ebe;
        }
        
        /* Section Spacing */
        section {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        
        /* Hero Section */
        .hero-bg {
            background-color: var(--accent);
            border-radius: 0 0 0 100px;
        }
        
        /* Counter Section */
        .counter-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        /* Why Choose Us Icons */
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        /* Service Cards */
        .service-card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        /* Testimonials */
        .testimonial-card {
            border-left: 3px solid var(--primary);
            padding-left: 1.5rem;
        }
        
        /* Footer */
        footer {
            background-color: #f8f9fa;
        }
        
        .footer-heading {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        
        .footer-links a {
            text-decoration: none;
            color: var(--secondary);
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .newsletter-form .form-control {
            border-radius: 0;
            border: 1px solid #dee2e6;
        }
        
        .newsletter-form .btn {
            border-radius: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .navbar-nav {
                text-align: center;
            }
            
            section {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
