
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-green: #2d5a27;
            --light-green: #e9f5e9;
            --accent-gold: #d4af37;
            --dark-gold: #b8941f;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

            /* Effects */
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.6;
            color: var(--gray-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.3;
            color: var(--brown);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.2rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-green), var(--olive));
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            /* margin-top: 100px; */
        }
        
        /* section {
            padding: var(--section-padding);
        } */
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
            box-shadow: 0 5px 15px rgba(42, 107, 60, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 107, 60, 0.3);
            background-color: var(--primary-green);
        }
        
        .btn-primary:active {
            transform: scale(0.95);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }
        
        .btn-secondary:hover {
            background-color: rgba(42, 107, 60, 0.05);
            transform: translateY(-3px);
        }
        
        
        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            z-index: 100;
            width: 100%;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-green);
        }

        .logo img {
            width: 50px;
            height: 70px;
        }
        
        .logo i {
            color: var(--accent-gold);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-green);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-green);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(45, 90, 39, 0.8), rgba(45, 90, 39, 0.9)), url('/assets/images/Aromatana-hero.jpg') no-repeat center center/cover;
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        /* .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        } */
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: var(--dark-gold);
            transform: translateY(-3px);
            background-color: var(--primary-green);
             color: var(--white);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .more-products {
         justify-content: center;
            display: flex;
            align-items: center;

        }
        .view-more {
            background-color: var(--primary-green);
            text-align: center;
            margin-top: 10px;
        }

        .view-more:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
        }
        
        .section-title {
            text-align: center;
            color: var(--primary-green);
            position: relative;
            /* margin-top: 100px; */
        }

        .products-title, .about-title, .contact-title {
            margin-top: 100px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent-gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        .highlight {
            color: var(--primary-green);
            font-weight: 600;
        }
        
         /* About Section */
        .about {
            background-color: var(--cream);
            padding-top: 25px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }


        /* About & Mission */
        .about-mission {
            background-color: var(--light-green);
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .card i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .card h3 {
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        /* Core Values */
        .values-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            margin-bottom: 40px;
        }
        
        .value-item {
            background-color: var(--light-green);
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .value-item i {
            color: var(--accent-gold);
        }
        
        /* Products */
        .products {
            background-color: #f9f9f9;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-card video {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-content h3 {
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        
        /* Why Choose Us */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .benefit-item i {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-top: 5px;
        }
        
        /* FAQ */
        .faq-section {
            background-color: var(--light-green);
            padding-bottom: 25px;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            background-color: var(--white);
            padding: 20px;
            font-weight: 600;
            color: var(--primary-green);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            background-color: var(--white);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 200px;
        }


         /* Contact */
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 40px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
            color: var(--primary-green);
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(42, 107, 60, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.2rem;
        }
        
        .contact-form {
            background-color: var(--gray-light);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(42, 107, 60, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

         /* Animations */
        /* .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        } */

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-green);
            color: var(--white);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        
        .site-footer {
    background-color: var(--primary-green);
    color: #e5e7eb;
    padding: 20px 0 5px;
    font-size: 15px;
}

.site-footer a {
    color: #e5e7eb;
    text-decoration: none;
}

.site-footer a:hover {
    color: #8cc63f;
    text-decoration: underline;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 {
    font-size: 20px;

}

/* Brand */
.footer-brand img {
    max-width: 50px;
    font-size: 16px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.footer-links{
    list-style: none;
    
}

/* contact message notification */
.notification {
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 14px;
}

.notification.success {
  background: #e6f7ec;
  color: #2e7d32;
}

.notification.error {
  background: #fdecea;
  color: #c62828;
}

        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero:before {
                width: 30%;
            }
            
            .hero-content {
                max-width: 65%;
            }
            
            .about-content {
                flex-direction: column;
                gap: 40px;
            }
        }

        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.9rem;
            }
            
            .section-padding {
                padding: 60px 15px;
            }
            
            .hero-btns .btn {
                width: 100%;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }

        .map{
            padding: 0;
            height: 500px;
        }

        .map-view{
            height: auto;
        }