
        :root {
            --primary-gray: #6c757d;
            --dark-gray: #495057;
            --light-gray: #ced4da;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
        }

        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-gray) !important;
        }
        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 0.75rem;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-gray) !important;
        }
        .navbar-light .navbar-toggler {
            border-color: var(--light-gray);
        }
        .navbar-light .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2873, 80, 87, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://png.pngtree.com/background/20230525/original/pngtree-magnified-finance-documents-and-charts-on-black-background-picture-image_2730841.jpg') no-repeat center center/cover;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        .hero-section h1 {
            font-weight: 700;
            font-size: 6rem;
        }
        .hero-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 1.5rem auto;
        }
        .btn-cta {
            background-color: white;
            color: rgb(4, 4, 4);
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-cta:hover {
            background-color: var(--primary-gray);
            color: white;
            transform: translateY(-3px);
        }

        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }

        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .section-title {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }
        .lead-text {
            color: var(--primary-gray);
            font-size: 1.1rem;
        }

        /* Counter Section */
        .counter-section {
            background-color: var(--bg-light);
        }
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-gray);
            margin-bottom: 15px;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-gray);
        }
        .counter-text {
            color: var(--primary-gray);
            font-weight: 500;
        }

        /* Vision & Mission */
        .vision-mission-box {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary-gray);
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-gray);
            margin-bottom: 20px;
        }
        .feature-box h5 {
            font-weight: 700;
            color: var(--dark-gray);
        }

        /* Services Section */
        .service-card {
            background-color: var(--bg-light);
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-card img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        .service-card .card-body {
            padding: 1.5rem;
        }
        .service-card .card-title {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }
        .service-card .card-text {
            color: var(--primary-gray);
            min-height: 150px; /* Ensures consistent height for description */
        }
        .btn-read-more {
            color: var(--dark-gray);
            font-weight: 600;
            text-decoration: none;
        }
        .btn-read-more:hover {
            color: var(--primary-gray);
        }

        /* Reviews Section */
        .review-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-gray);
        }
        .review-box p {
            font-style: italic;
            color: var(--primary-gray);
        }
        .reviewer-info h6 {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0;
        }
        .reviewer-info small {
            color: var(--light-gray);
        }
        .bi-star-fill {
            color: #ffc107;
        }

        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--bg-light);
            color: var(--dark-gray);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--light-gray);
        }
        .accordion-button {
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--dark-gray);
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        .cta-section h2 {
            font-weight: 700;
        }
        .cta-section .btn-cta {
            background-color: white;
            color: var(--dark-gray);
        }
        .cta-section .btn-cta:hover {
            background-color: var(--bg-light);
            color: var(--dark-gray);
        }

        /* Contact Section */
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-gray);
            margin-right: 15px;
        }
        .contact-form .form-control {
            border-radius: 0;
            border: 1px solid var(--light-gray);
        }
        .contact-form .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-gray);
        }

        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--bg-light);
            padding: 50px 0 20px 0;
        }
        footer h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 10px;
        }
        footer ul li a {
            color: var(--bg-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: white;
        }
        .newsletter-form .form-control {
            border-radius: 0;
            border: none;
        }
        .newsletter-form .btn {
            background-color: var(--primary-gray);
            border: none;
            border-radius: 0;
            color: white;
        }
        .newsletter-form .btn:hover {
            background-color: var(--light-gray);
        }
        .copyright {
            border-top: 1px solid var(--primary-gray);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: var(--bg-light);
        }
        .copyright a {
            color: var(--bg-light);
            text-decoration: none;
        }
        .copyright a:hover {
            color: white;
        }
