
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header/Nav/Auth styles removed — now provided by home.css via shared navbar */

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(45, 80, 22, 0.85), rgba(45, 80, 22, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .btn-hero {
            background-color: #ff9800;
            color: white;
            padding: 14px 32px;
            font-size: 16px;
            border-radius: 4px;
            display: inline-block;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: #f57c00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Featured Products */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: #2d5016;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: #8bc34a;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 250px;
            width: 100%;
            object-fit: contain;
            background: #f5f5f5;
            padding: 10px;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-category {
            color: #8bc34a;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-name {
            font-size: 18px;
            margin: 8px 0;
            color: #333;
        }
        
        .product-price {
            font-size: 20px;
            color: #2d5016;
            font-weight: 700;
        }
        
        /* Video Section */
        .video-section {
            background-color: #f5f9f1;
            padding: 60px 0;
            margin: 40px 0;
        }
        
        .video-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .video-content {
            flex: 1;
            min-width: 300px;
        }
        
        .video-content h3 {
            font-size: 28px;
            color: #2d5016;
            margin-bottom: 20px;
        }
        
        .video-content p {
            color: #555;
            margin-bottom: 25px;
        }
        
        .video-player {
            flex: 1;
            min-width: 300px;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .video-player video {
            width: 100%;
            display: block;
            border-radius: 8px;
        }
        
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(139, 195, 74, 0.9);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .play-btn:hover {
            background-color: rgba(139, 195, 74, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-btn i {
            color: white;
            font-size: 28px;
            margin-left: 5px;
        }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            background-color: #e8f5e9;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 30px;
            color: #2d5016;
        }
        
        .feature-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        /* Footer/Modal styles removed — now provided by home.css via shared layout */

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 36px;
            }
            .video-container {
                flex-direction: column;
            }
            .video-content,
            .video-player {
                min-width: unset;
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 70px 15px;
            }
            .hero h2 {
                font-size: 28px;
            }
            .hero p {
                font-size: 15px;
                padding: 0 10px;
            }
            .section-title h2 {
                font-size: 26px;
            }
            .section-title {
                margin: 40px 0 25px;
            }
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
                margin-bottom: 40px;
            }
            .features {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin: 40px 0;
            }
            .feature-card {
                padding: 20px 15px;
            }
            .video-section {
                padding: 40px 0;
                margin: 20px 0;
            }
            .container {
                padding: 0 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 60px 10px;
            }
            .hero h2 {
                font-size: 24px;
            }
            .hero p {
                font-size: 14px;
            }
            .btn-hero {
                padding: 12px 24px;
                font-size: 14px;
            }
            .section-title h2 {
                font-size: 22px;
            }
            .products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .product-img {
                height: 200px;
            }
            .product-info {
                padding: 15px;
            }
            .product-name {
                font-size: 16px;
            }
            .product-price {
                font-size: 18px;
            }
            .features {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .feature-icon {
                width: 60px;
                height: 60px;
            }
            .feature-icon i {
                font-size: 24px;
            }
            .feature-card h4 {
                font-size: 17px;
            }
            .video-content h3 {
                font-size: 22px;
            }
            .play-btn {
                width: 55px;
                height: 55px;
            }
            .play-btn i {
                font-size: 22px;
            }
            .container {
                padding: 0 10px;
            }
        }

        @media (max-width: 400px) {
            .hero h2 {
                font-size: 20px;
            }
            .section-title h2 {
                font-size: 20px;
            }
            .product-img {
                height: 180px;
            }
        }
