
        :root {
            --primary: #1A73E8;
            --secondary: #34A853;
            --accent: #E9F5EE;
            --neutral: #FFFFFF;
            --text-color: #202124;
        }

        body {
            font-family: 'Fira Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .bg-light-alt {
            background-color: #f8f9fa;
        }

        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .navbar-nav {
            margin: 0 auto;
        }

        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            margin: 0 0.75rem;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .nav-cta-btn {
            background-color: var(--text-color);
            color: var(--neutral) !important;
            border-radius: 6px;
            padding: 0.5rem 1.5rem !important;
            transition: all 0.3s ease;
        }

        .nav-cta-btn:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #5f6368;
        }

        .hero-btn {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .hero-btn:hover {
            background-color: #1557b0;
            color: white;
            transform: translateY(-2px);
        }

        /* 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(--secondary);
            font-size: 1.75rem;
        }

        /* Services Cards */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

        .service-card .card-body {
            padding: 1.5rem;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .read-more:hover {
            color: #1557b0;
        }

        .read-more i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(4px);
        }

        /* Counter Section */
        .counter-section {
            background-color: var(--primary);
            color: white;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        /* FAQ Section */
        .accordion-button {
            font-weight: 600;
            padding: 1.25rem;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--accent);
            color: var(--text-color);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }

        /* Testimonials */
        .testimonial-card {
            border-radius: 10px;
            padding: 2rem;
            background-color: var(--neutral);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .client-name {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .client-location {
            color: #5f6368;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background-color: var(--text-color);
            color: var(--neutral);
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #bdc1c6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neutral);
        }

        .newsletter-form .form-control {
            background-color: #343a40;
            border: 1px solid #5f6368;
            color: var(--neutral);
        }

        .newsletter-form .form-control::placeholder {
            color: #bdc1c6;
        }

        .newsletter-form .btn {
            background-color: var(--primary);
            color: white;
            margin-top: 0.75rem;
        }

        .copyright {
            border-top: 1px solid #5f6368;
            padding-top: 1.5rem;
            margin-top: 3rem;
            color: #bdc1c6;
            font-size: 0.9rem;
        }
