:root {
            --primary-green: #0a5c36;
            --secondary-gold: #d4af37;
            --light-beige: #f5f1e8;
            --dark-text: #1a1a1a;
            --medium-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 600;
            color: var(--primary-green);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 92, 54, 0.85), rgba(10, 92, 54, 0.9)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green) !important;
        }
        .btn-primary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #084628;
            border-color: #084628;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 92, 54, 0.2);
        }
        .section-padding {
            padding: 100px 0;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary-green);
            font-size: 32px;
            transition: transform 0.4s;
        }
        .feature-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            background-color: rgba(10, 92, 54, 0.2);
        }
        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 30px rgba(10, 92, 54, 0.15);
        }
        .product-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        .testimonial-card {
            border-left: 5px solid var(--secondary-gold);
            background-color: var(--light-beige);
            padding: 30px;
            border-radius: 0 10px 10px 0;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: var(--primary-green);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        footer {
            background-color: #1a2f24;
            color: #ccc;
        }
        footer a {
            color: #b8d4c4;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-bottom {
            background-color: #0f1f17;
            font-size: 0.9rem;
        }
        .sticky-top {
            top: 0;
            z-index: 1020;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 140px 0 80px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 92, 54, 0.08);
            color: var(--primary-green);
            font-weight: 600;
        }
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
