
        /* CSS Reset and Base Styles - Same as previous */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography - Same green theme */
        h1, h2, h3 {
            color: #2d5c27; /* Same green as previous page */
            font-weight: 700;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #4CAF50; /* Same accent green */
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        /* Header - Same green theme */
        .page-header {
            background: linear-gradient(rgba(45, 92, 39, 0.85), rgba(45, 92, 39, 0.8)), url('https://images.unsplash.com/photo-1596662951483-6d4cc4cac5cc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0 80px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
        }
        
        /* Sections - Same styling */
        .section {
            padding: 60px 0;
        }
        
        .section-light {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-bottom: 30px;
        }
        
        .section-alt {
            background-color: #f0f7f0; /* Same light green background */
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 30px;
            border-left: 5px solid #4CAF50;
        }
        
        /* Content Layout */
        .content-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-half {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px;
        }
        
        .col-full {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 15px;
        }
        
        /* Benefits List */
        .benefits-list {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .benefits-list li {
            padding: 10px 0 10px 40px;
            position: relative;
            margin-bottom: 10px;
        }
        
        .benefits-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 10px;
            color: #4CAF50; /* Same green checkmark */
            font-size: 1.2rem;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
            border-top: 4px solid #4CAF50;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #2d5c27; /* Same dark green */
            margin-bottom: 15px;
        }
        
        /* Highlights List */
        .highlights-list {
            display: flex;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        
        .highlight-item {
            background-color: #f0f7f0;
            border-radius: 8px;
            padding: 15px 20px;
            margin: 0 10px 15px 0;
            display: flex;
            align-items: center;
            flex: 0 0 calc(50% - 10px);
            border-left: 4px solid #2d5c27;
        }
        
        .highlight-item i {
            color: #4CAF50;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(45, 92, 39, 0.85), rgba(45, 92, 39, 0.9)), url('https://images.unsplash.com/photo-1600078686889-8c42747c25fe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
            border-radius: 8px;
            margin: 40px 0;
        }
        
        .cta-section h2 {
            color: white;
        }
        
        .cta-section h2:after {
            background-color: #fff;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cta-button {
            display: inline-block;
            background-color: #fff;
            color: #2d5c27;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 30px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #f0f7f0;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Info Cards */
        .info-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 40px -10px;
        }
        
        .info-card {
            flex: 0 0 calc(33.333% - 20px);
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 10px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid #2d5c27;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .info-card i {
            font-size: 2.5rem;
            color: #2d5c27;
            margin-bottom: 20px;
        }
        
        /* Packaging Options */
        .packaging-options {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .packaging-item {
            flex: 0 0 50%;
            padding: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .packaging-icon {
            background-color: #4CAF50;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        /* Uses Grid */
        .uses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .use-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
            border-top: 4px solid #4CAF50;
        }
        
        .use-card:hover {
            transform: translateY(-5px);
        }
        
        .use-icon {
            font-size: 2.5rem;
            color: #2d5c27;
            margin-bottom: 15px;
        }
        
        /* Footer - Same green theme */
        .page-footer {
            background-color: #2d5c27;
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-top: 50px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: #c6e1c6;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Responsive Styles - Same as before */
        @media (max-width: 992px) {
            .col-half {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 30px;
            }
            
            .info-card {
                flex: 0 0 calc(50% - 20px);
            }
            
            .highlight-item {
                flex: 0 0 100%;
                margin-right: 0;
            }
            
            .packaging-item {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .page-header {
                padding: 80px 0 60px;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section, .section-light, .section-alt {
                padding: 40px 20px;
            }
            
            .info-card {
                flex: 0 0 100%;
            }
            
            .features-grid, .uses-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
