 :root {
            --honey-gold: #FFB800;
            --honey-dark: #E89E00;
            --cream: #FFF8E6;
            --dark-brown: #3A2400;
            --light-brown: #A67C00;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-brown);
            background-color: #FFFFFF;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--honey-gold);
        }
        
        .nav-link {
            color: var(--dark-brown);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--honey-gold);
        }
        
        .btn-honey {
            background-color: var(--honey-gold);
            color: white;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-honey:hover {
            background-color: var(--honey-dark);
            color: white;
        }
        
        .hero {
            background-color: var(--cream);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('./images/honey2.png');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--dark-brown);
        }
        
        .features-section {
            padding: 80px 0;
        }
        
        .feature-card {
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--honey-gold);
        }
        
        .products-section {
            background-color: var(--cream);
            padding: 80px 0;
        }
        
        .product-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            margin-bottom: 30px;
            background-color: white;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-img {
            height: 500px;
            object-fit: cover;
            width: 100%;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-price {
            color: var(--honey-gold);
            font-weight: 600;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .testimonials-section {
            background-color: var(--cream);
            padding: 80px 0;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }
        
        .testimonial-stars {
            color: var(--honey-gold);
            margin-bottom: 15px;
        }
        
        .cta-section {
            background-color: var(--honey-gold);
            padding: 80px 0;
            color: white;
        }
        
        .cta-section h2 {
            color: white;
        }
        
        .btn-white {
            background-color: white;
            color: var(--honey-gold);
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-white:hover {
            background-color: var(--dark-brown);
            color: white;
        }
        
        .footer {
            background-color: var(--dark-brown);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--honey-gold);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--honey-gold);
        }
        
        .footer-social a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .footer-social a:hover {
            color: var(--honey-gold);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            color: rgba(255, 255, 255, 0.7);
        }