 
        :root {
            --emerald-green: #00573D;
            --light-green: #e8f4f0;
            --medium-green: #c4e4d9;
            --text-dark: #333;
            --text-light: #666;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--emerald-green);
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: var(--emerald-green);
            border-radius: 50%;
            position: relative;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-icon::before {
            content: "";
            width: 30px;
            height: 30px;
            border: 3px solid white;
            border-radius: 50%;
            position: absolute;
        }
        
        .logo-icon::after {
            content: "+";
            color: white;
            font-size: 20px;
            font-weight: 300;
            position: absolute;
            bottom: 5px;
            right: 5px;
        }
        
        /* Navigation */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--emerald-green);
        }
        
        /* Hero Section with Parallax */
        .hero {
            background: linear-gradient(rgba(0, 87, 61, 0.7), rgba(0, 87, 61, 0.7)), url('https://images.unsplash.com/photo-1576765974257-b414b9ea0051?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            position: relative;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn-primary {
            background-color: var(--emerald-green);
            border-color: var(--emerald-green);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #004530;
            border-color: #004530;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-primary {
            color: var(--emerald-green);
            border-color: var(--emerald-green);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--emerald-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styling */
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--emerald-green);
            font-weight: 700;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--emerald-green);
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s;
        }
        
        .about-img:hover {
            transform: scale(1.02);
        }
        
        /* Stats Section */
        .stats {
            background-color: var(--emerald-green);
            color: white;
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light-green);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--emerald-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            color: white;
            font-size: 1.8rem;
        }
        
        .service-card h3 {
            color: var(--emerald-green);
            margin-bottom: 15px;
        }
        
        /* Process Section */
        .process {
            position: relative;
        }
        
        .process::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1745420052490-285dbfa1cf4d?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=861') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            opacity: 0.1;
            z-index: -1;
        }
        
        .process-step {
            text-align: center;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--emerald-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--light-green);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--medium-green);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin-bottom: 5px;
            color: var(--emerald-green);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0, 87, 61, 0.85), rgba(0, 87, 61, 0.85)), url('https://images.unsplash.com/photo-1758691463384-771db2f192b3?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1032') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Contact Section */
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--emerald-green);
            box-shadow: 0 0 0 0.2rem rgba(0, 87, 61, 0.25);
        }
        
        .contact-info {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--emerald-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--emerald-green);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-logo {
            color: white;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Page Styles */
        .page-hero {
            background: linear-gradient(rgba(0, 87, 61, 0.8), rgba(0, 87, 61, 0.8)), url('https://images.unsplash.com/photo-1576765974257-b414b9ea0051?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            color: white;
            padding: 150px 0 80px;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Team Section */
        .team-card {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid var(--light-green);
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.1);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .faq-question {
            background-color: var(--light-green);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: between;
            align-items: center;
            font-weight: 600;
            color: var(--emerald-green);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Service Detail */
        .service-detail {
            margin-bottom: 50px;
        }
        
        .service-detail-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-detail-img img {
            width: 100%;
            transition: transform 0.5s;
        }
        
        .service-detail:hover .service-detail-img img {
            transform: scale(1.05);
        }
        
        /* Map */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 400px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1, .page-hero h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
    