
        :root {
            --primary-color: #2d6a4f;
            --secondary-color: #95d5b2;
            --light-color: #d8f3dc;
            --white-color: #ffffff;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--primary-color) !important;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: #1a4332;
            color: var(--white-color);
        }
        
        .hero-section {
            background: linear-gradient(rgba(45, 106, 79, 0.8), rgba(45, 106, 79, 0.8)), url('https://wallpaperaccess.com/full/7693927.jpg');
            background-size: cover;
            background-position: center;
            padding: 10rem 0;
            color: var(--white-color);
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 7rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        .about-image {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
            background-color: var(--light-color);
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .counter-box p {
            color: #555;
            font-weight: 500;
        }
        
        .vm-box {
            padding: 2rem;
            background-color: var(--light-color);
            border-radius: 8px;
            height: 100%;
        }
        
        .vm-box h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .vm-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-box h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .service-card {
            background-color: var(--light-color);
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-body h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .review-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .review-card i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .review-card .quote-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 3rem;
            color: rgba(45, 106, 79, 0.1);
        }
        
        .review-card .client-info {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .review-card .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        .cta-section {
            background-color: var(--primary-color);
            padding: 5rem 0;
            color: var(--white-color);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .contact-info-box {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .contact-form {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 8px;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 3rem 0 1rem;
        }
        
        .footer h5 {
            color: var(--white-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer ul li a {
            color: var(--white-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            padding: 0.5rem 1rem;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: 0 4px 4px 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--white-color);
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
