
        :root {
            --primary-color: #6B7280;
            --secondary-color: #D1D5DB;
            --light-color: #f0f3f7;
            --text-dark: #2d3436;
            --text-light: #636e72;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: 500;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(64, 145, 108, 0.3);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            border-color: var(--primary-color);
            color: var(--primary-color);
            font-weight: 500;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(64, 145, 108, 0.3);
        }
        
        .hero-section {
            background: linear-gradient(rgba(162, 163, 163, 0.7), rgba(106, 107, 107, 0.7)), url('https://images.pexels.com/photos/4386466/pexels-photo-4386466.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            padding: 20px;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px 15px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(64, 145, 108, 0.15);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .counter-box p {
            color: var(--text-light);
            margin: 0;
        }
        
        .vm-box {
            padding: 30px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(64, 145, 108, 0.15);
        }
        
        .vm-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .vm-box h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 15px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--light-color);
            z-index: 1;
        }
        
        .process-step .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .process-step .step-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .process-step h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .feature-box {
            padding: 30px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(64, 145, 108, 0.15);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            background-color: var(--light-color);
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(64, 145, 108, 0.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .service-card-body p {
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .review-item {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(64, 145, 108, 0.15);
        }
        
        .review-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-content {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 20px;
            box-shadow: none;
        }
        
        .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: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            color: white;
            text-align: center;
            border-radius: 10px;
            margin: 80px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-info-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(64, 145, 108, 0.15);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(64, 145, 108, 0.25);
        }
        
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-widget h4 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-widget h4::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-widget p {
            color: #b0b0b0;
            margin-bottom: 20px;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 12px;
        }
        
        .footer-widget ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 50px;
            border: none;
            margin-bottom: 15px;
        }
        
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            border: none;
            background-color: var(--primary-color);
            color: white;
            padding: 0 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--secondary-color);
        }
        
        .copyright {
            border-top: 1px solid #333;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: #b0b0b0;
        }
        
        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--light-color);
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
