        :root {
            --forest-green: #065f46;
            --forest-green-alt: #134e4a;
            --burnt-orange: #ea580c;
            --orange-alt: #f97316;
            --cream: #fef3c7;
            --off-white: #fafaf9;
            --dark-gray: #1f2937;
            --light-gray: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--off-white);
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

                       /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--warm-orange);
        }

        .logo-img {
            height: 50px;
            width: auto;
        }
        
        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .desktop-nav a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .desktop-nav a:hover {
            color: var(--burnt-orange);
        }
        
        .desktop-nav a.active {
            color: var(--forest-green);
            font-weight: 600;
        }
        
        .desktop-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--burnt-orange);
            border-radius: 2px;
        }
        
        .contact-btn {
            background-color: var(--burnt-orange);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-left: 10px;
        }
        
        .contact-btn:hover {
            background-color: var(--burnt-orange-light);
        }
        
        /* Mobile Navigation Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 101;
        }
        
        .mobile-menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--forest-green);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Navigation Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            padding: 100px 30px 40px;
            transition: right 0.4s ease;
            z-index: 100;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav a {
            display: block;
            text-decoration: none;
            color: var(--dark-text);
            font-size: 18px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-nav a:hover {
            color: var(--burnt-orange);
        }
        
        .mobile-nav a.active {
            color: var(--forest-green);
            font-weight: 600;
        }
        
        .mobile-nav .contact-btn {
            width: 100%;
            margin-top: 20px;
            padding: 15px;
            font-size: 16px;
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 99;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(6, 95, 70, 0.85), rgba(19, 78, 74, 0.9)), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--cream);
        }

        .cta-button {
            display: inline-block;
            background-color: var(--burnt-orange);
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: background-color 0.3s, transform 0.3s;
        }

        .cta-button:hover {
            background-color: var(--orange-alt);
            transform: translateY(-3px);
        }

        /* Sustainability Section */
        .sustainability {
            padding: 80px 0;
            background-color: var(--off-white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--forest-green);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .blog-img {
            height: 200px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-category {
            display: inline-block;
            background-color: var(--cream);
            color: var(--forest-green);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .blog-title {
            font-size: 1.4rem;
            color: var(--forest-green);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--burnt-orange);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* India Sustainability Section */
        .india-sustainability {
            padding: 80px 0;
            background-color: white;
        }

        .india-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .india-text {
            flex: 1;
        }

        .india-text h3 {
            font-size: 2rem;
            color: var(--forest-green);
            margin-bottom: 20px;
        }

        .india-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .india-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .india-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background-color: var(--forest-green);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--cream);
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--cream);
        }

        .footer-links a {
            display: block;
            color: var(--light-gray);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--burnt-orange);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

          /* Responsive Styles */
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 25px;
            }
            
            .founder-header {
                flex-direction: column;
                text-align: center;
            }
            
            .hero {
                padding: 60px 0;
            }
        }
        
        @media (min-width: 993px) {
            .mobile-nav,
            .menu-overlay,
            .mobile-menu-toggle {
                display: none;
            }
        }