html {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(27, 94, 32, 0.85) 100%);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            margin: 0.25rem;
            background-color: #f9f9f9;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            color: #374151;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #e8f5e9;
            border-color: #4caf50;
            color: #1b5e20;
        }
        .product-card {
            border-top: 4px solid #4caf50;
        }
