    /* Custom Fonts & Colors */
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #f9f9f6;
        color: #2e3a2f;
    }

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    /* Navbar */
    .navbar-brand {
        font-weight: 700;
        font-size: 1.8rem;
        color: #2e3a2f;
    }

    .navbar-brand:hover {
        color: #388e3c;
    }

    /* Hero */
    .hero {
        background: linear-gradient(90deg, #dcedc8 0%, #a5d6a7 100%);
        padding: 80px 0;
        border-radius: 0 0 80px 80px;
        box-shadow: 0 8px 30px rgba(56, 142, 60, 0.15);
    }

    .hero h1 {
        font-weight: 900;
        font-size: 3rem;
        color: #1b3a1b;
    }

    .hero p {
        font-size: 1.25rem;
        margin-top: 1rem;
        color: #2e3a2f;
    }

    .cta-btn {
        background-color: #388e3c;
        color: white;
        border-radius: 30px;
        padding: 14px 44px;
        font-weight: 600;
        box-shadow: 0 6px 15px rgba(56, 142, 60, 0.4);
        transition: background-color 0.3s ease;
    }

    .cta-btn:hover {
        background-color: #256029;
        color: #fff;
    }

    /* Product Cards */
    .product-card {
        border-radius: 20px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        background: #fff;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .product-card img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        object-fit: cover;
        height: 180px;
        width: 100%;
    }

    .product-card .card-body {
        padding: 1.25rem 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #2e3a2f;
    }

    /* Benefits List */
    .benefit-list li {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
        color: #3a4a33;
        list-style-type: none;
    }

    .benefit-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 0;
        color: #388e3c;
        font-weight: 900;
        font-size: 1.3rem;
        line-height: 1;
    }

    /* Testimonials */
    .testimonial-card {
        background: #e8f5e9;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 6px 15px rgba(56, 142, 60, 0.15);
        height: 100%;
    }

    .testimonial-text {
        font-style: italic;
        font-size: 1.1rem;
        color: #2e3a2f;
    }

    .testimonial-author {
        margin-top: 1rem;
        font-weight: 700;
        color: #256029;
    }

    /* Contact Form */
    .form-control:focus {
        border-color: #388e3c;
        box-shadow: 0 0 0 0.2rem rgba(56, 142, 60, 0.25);
    }

    /* Footer */
    footer {
        background-color: #2e3a2f;
        color: #cfd8dc;
        padding: 40px 0;
    }

    footer a {
        color: #a5d6a7;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: #81c784;
        text-decoration: none;
    }

    .footer-logo {
        font-weight: 900;
        font-size: 1.8rem;
        color: #a5d6a7;
        letter-spacing: 2px;
    }

    /* Responsive Adjustments */
    @media (max-width: 767px) {
        .hero h1 {
            font-size: 2.2rem;
        }

        .section-title {
            font-size: 2rem;
        }
    }