body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(to bottom right, #166534, #22c55e); /* Dark green to lighter green gradient */
            color: #f3f4f6; /* Light gray text for contrast */
        }
        .hero-section {
            background: linear-gradient(to bottom right, #065f46, #10b981); /* Deeper green gradient for hero */
        }
        .gradient-bg {
            background: linear-gradient(to bottom right, #065f46, #10b981);
        }
        .product-card {
            background-color: rgba(6, 95, 70, 0.8); /* Slightly transparent dark green */
        }
        .btn-primary {
            background-color: #10b981; /* Medium green */
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #059669; /* Darker green on hover */
        }
        .btn-secondary {
            background-color: #34d399; /* Lighter green */
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #2ebc83; /* Slightly darker light green on hover */
        }
        .modal-overlay {
            background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent overlay */
            z-index: 999;
            align-items: flex-start; /* Allows modal content to float at the top if too tall */
            padding: 1rem; /* Add padding to the overlay for small screens */
        }
        .modal-content {
            background: linear-gradient(to bottom right, #065f46, #10b981); /* Green gradient for modal */
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            max-height: 95vh; /* Limit height to allow scrolling */
            overflow-y: auto; /* Enable vertical scrolling */
            margin-top: 2.5vh; /* Small margin from top */
        }
        input, textarea {
            background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for inputs */
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #f3f4f6;
            border-radius: 0.375rem;
            padding: 0.5rem;
        }
        input::placeholder, textarea::placeholder {
            color: #d1d5db; /* Light gray placeholder text */
        }

        /* Slider specific styles */
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 2rem auto;
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            background-color: #065f46;
            height: 400px; /* Explicitly set height for the container */
        }
        .slide {
            width: 100%;
            height: 400px; /* Fixed height for consistency */
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        .slide.active {
            opacity: 1;
        }
        .slide-content {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
            max-width: 70%;
        }
        .slide-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }
        .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .dot.active {
            background-color: white;
        }

        /* Mobile menu specific styles */
        .mobile-menu {
            transition: transform 0.3s ease-out;
            transform: translateX(100%);
            z-index: 60; /* Above regular content, below modals */
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        .hamburger-icon {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
        }
        .hamburger-icon span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }
        .hamburger-icon.active span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }
        .hamburger-icon.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-icon.active span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }

        /* Sticky Footer Menu */
        .sticky-footer-menu {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to right, #065f46, #10b981); /* Green gradient for footer menu */
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            z-index: 50; /* Below header, above main content */
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: nowrap; /* Prevent wrapping */
        }
        .sticky-footer-menu a {
            color: white;
            font-size: 0.875rem; /* text-sm */
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease-in-out; /* Add transform transition */
            text-align: center;
            flex-grow: 1; /* Distribute space evenly */
            display: flex; /* Enable flex for icon and text vertical alignment */
            flex-direction: column; /* Stack icon and text vertically */
            align-items: center; /* Center items horizontally */
            gap: 0.25rem; /* Small gap between icon and text */
        }
        .sticky-footer-menu a:hover,
        .sticky-footer-menu a:active { /* :active for touch feedback */
            background-color: rgba(255, 255, 255, 0.2);
            color: #d1d5db;
            transform: scale(1.05); /* Subtle scale animation */
        }
        .sticky-footer-menu a .icon {
            font-size: 1.5rem; /* Icon size */
            line-height: 1; /* Remove extra space above/below icon */
        }
        .sticky-footer-menu a .text {
            font-size: 0.7rem; /* Smaller text for mobile footer */
            line-height: 1;
        }