
        :root {
            --primary-color: #2daa4f; 
            --dark-green: #1e7e34;
            --accent-color: #eabf9f;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-gray: #666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            position: relative; 
        }

        /* --- SCROLL OFFSET FIX --- */
        /* Ensures the section title isn't hidden behind the sticky navbar when clicked */
        #home, #about, #contact {
            scroll-margin-top: 100px;
        }

        /* --- Top Bar --- */
        .top-bar {
            background-color: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .icon-box {
            display: flex;
            align-items: center; 
        }

        .icon-box i {
            color: var(--primary-color);
            font-size: 2.5rem; 
            margin-right: 15px;
        }

        .icon-box h6 {
            font-weight: 700; 
            color: #222;
            font-size: 0.9rem;
            margin-bottom: 5px; 
            letter-spacing: 0.5px;
        }

        .icon-box p, .icon-box a {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 0;
            text-decoration: none;
        }

        .icon-box .address-text {
            color: var(--text-gray); 
        }

        .icon-box .contact-link {
            color: var(--primary-color); 
            font-weight: 500;
            display: block;
            transition: color 0.3s;
        }

        .icon-box .contact-link:hover {
            color: var(--dark-green);
        }

        /* --- Navbar --- */
        .navbar {
            transition: all 0.4s ease;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
        }
        
        .navbar-brand img {
            max-height: 60px;
            transition: transform 0.3s;
        }

        .nav-link {
            font-weight: 500;
            color: #444 !important;
            margin: 0 15px;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }

        .btn-brand {
            background-color: var(--primary-color);
            color: white;
            border-radius: 50px; /* Pill shape */
            padding: 10px 30px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
        }

        .btn-brand:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(45, 170, 79, 0.3);
        }

        /* --- Hero Section --- */
        .carousel-item {
            height: 80vh;
            min-height: 500px;
        }
        
        .carousel-item img {
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        .hero-caption {
            bottom: 0;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
        }

        /* --- Feature Cards --- */
        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.02);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(46, 139, 87, 0.15);
        }

        .feature-icon-circle {
            width: 80px;
            height: 80px;
            background: rgba(45, 170, 79, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            color: var(--primary-color);
            font-size: 30px;
        }

        .feature-card h4 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        .feature-card h5 {
            font-size: 1.1rem;
            color: #666;
            font-weight: 500;
        }

        /* --- Parallax Section --- */
        .parallax-section {
            background: linear-gradient(rgba(26, 74, 49, 0.85), rgba(26, 74, 49, 0.85)), url('../img/sustainable-green-leaves-bg.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            padding: 100px 0;
            color: white;
        }

        .border-left-accent {
            border-left: 5px solid var(--accent-color);
            padding-left: 20px;
        }

        /* --- About Section --- */
        .about-img-container {
            position: relative;
            padding: 20px;
        }
        
        .about-img-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            border-top: 5px solid var(--primary-color);
            border-left: 5px solid var(--primary-color);
            z-index: 0;
        }

        .about-img {
            position: relative;
            z-index: 1;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        /* --- Table Styling Adjustments --- */
        .custom-table-header {
            background-color: var(--primary-color) !important;
            color: white;
        }
        .table-section-bg {
            background-color: var(--light-bg);
        }

        /* --- Footer --- */
        .footer {
            background-color: #111;
            color: #aaa;
        }
        
        .footer h5 {
            color: white;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--primary-color);
        }

        .wp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: #25d366;
            border-radius: 50%;
            padding: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .wp-btn:hover {
            transform: scale(1.1);
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .top-bar { display: none; }
        }