:root {
            --primary-green: #2a6b3f;
            --secondary-gold: #d4af37;
            --light-beige: #f5f1e8;
            --dark-brown: #3e2c1c;
            --text-gray: #333333;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .display-1, .display-2 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-brown);
            font-weight: 600;
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-green) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-brown) !important;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green) !important;
        }
        .nav-link:hover:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--secondary-gold);
        }
        .hero-section {
            background: linear-gradient(rgba(42, 107, 63, 0.85), rgba(62, 44, 28, 0.8)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .bg-light-beige {
            background-color: var(--light-beige);
        }
        .btn-ayurveda {
            background-color: var(--primary-green);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid var(--primary-green);
            transition: all 0.3s ease;
        }
        .btn-ayurveda:hover {
            background-color: transparent;
            color: var(--primary-green);
        }
        .btn-ayurveda-outline {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-ayurveda-outline:hover {
            background-color: var(--primary-green);
            color: white;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: var(--light-beige);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-green);
            font-size: 1.8rem;
        }
        .product-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-hover:hover .product-img {
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-brown);
            color: #e0d6c9;
        }
        footer a {
            color: #e0d6c9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--secondary-gold);
            color: var(--dark-brown);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--light-beige);
            margin: 5px 10px 5px 0;
            border-radius: 5px;
            color: var(--primary-green);
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }
        .certification-badge {
            border: 2px dashed var(--secondary-gold);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            height: 100%;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
            line-height: 1;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light-beige);
            color: var(--primary-green);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(42, 107, 63, 0.25);
        }
        .contact-info-box {
            padding: 25px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
                min-height: 70vh;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
