
        :root {
            --primary-color: #885a01;
            --secondary-color: #00dc8a;
            --light-color: #ffffff;
            --dark-color: #333333;
            --gray-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
        }
        
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-brand img{
            width: 180px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .btn-primary-custom {
            background-color: var(--secondary-color);
            color: var(--light-color);
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #dfa801;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .hero-section {
            background: linear-gradient(rgba(1, 181, 71, 0.7), rgba(151, 85, 0, 0.7)), url('../img/banner.jpg') center/cover no-repeat;
            color: var(--light-color);
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 65px;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .product-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0.5rem 0;
        }
        
        .product-price {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .offer-banner {
            background: linear-gradient(rgba(1, 183, 89, 0.8), rgba(232, 131, 1, 0.8)), url('https://images.pexels.com/photos/5632402/pexels-photo-5632402.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            padding: 60px 0;
            color: var(--light-color);
            text-align: center;
            margin: 4rem 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .review-card {
            background-color: var(--gray-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            height: 100%;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 0.5rem;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .reviewer-location {
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .cta-section {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 60px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .about-section {
            padding: 80px 0;
            background-color: var(--gray-color);
        }
        
        .vision-mission {
            margin-top: 3rem;
        }
        
        .vision-mission h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 2rem;
        }
        
        .contact-info i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1.5rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            padding: 0.8rem 1.5rem;
            background-color: var(--secondary-color);
            color: var(--light-color);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #dfa801;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 0.5rem;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }


        .unsubscribe-form {
        max-width: 100%;
        margin: auto;
        background: #fff;
        padding: 20px 25px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .unsusbcribe-form label {
        font-weight: bold;
        display: block;
        margin-bottom: 6px;
    }
    .unsubscribe-form input {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        margin-bottom: 15px;
        font-size: 14px;
    }
    .unsubscribe-form button {
        width: 100%;
        padding: 10px;
        background: #00dc8a;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        cursor: pointer;
    }
    button:hover {
        background: #c74441;
    }
    .message {
        margin-top: 15px;
        padding: 12px;
        background: #e8f8ec;
        border-left: 4px solid #2e8b57;
        display: none;
        border-radius: 6px;
        color: #2e8b57;
        font-size: 14px;
    }

    .blog-content img{
        width: 100%;
    }