:root {
            --primary-green: #2a7d2e;
            --secondary-green: #4caf50;
            --accent-gold: #ffc107;
            --dark-bg: #1e3a1f;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-bg);
        }
        .section-padding {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 31, 0.85), rgba(30, 58, 31, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .btn-primary-custom {
            background-color: var(--secondary-green);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            color: white;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        .icon-box {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s;
            height: 100%;
            border-top: 4px solid var(--secondary-green);
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .product-card img {
            height: 220px;
            object-fit: cover;
        }
        .product-card .card-body {
            padding: 25px;
        }
        .badge-custom {
            background-color: var(--accent-gold);
            color: #333;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary-green);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--primary-green);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        @media (max-width: 768px) {
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item::after {
                left: 16px;
            }
            .right {
                left: 0%;
            }
        }
        .contact-info-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            border-left: 5px solid var(--secondary-green);
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        .footer {
            background-color: var(--dark-bg);
            color: #ddd;
            padding: 60px 0 20px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-green);
        }
        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-green);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--secondary-green);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            color: var(--text-dark);
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-decoration: none !important;
            border: 1px solid #eee;
        }
        .flink:hover {
            background-color: var(--secondary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
        }
        .stats-box {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 10px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            text-decoration: none;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-5px);
        }
