        :root {
            --forest-green: #065f46;
            --forest-green-light: #134e4a;
            --burnt-orange: #ea580c;
            --burnt-orange-light: #f97316;
            --cream: #fef3c7;
            --off-white: #fefce8;
            --dark-text: #1f2937;
            --light-text: #6b7280;
        }
        
        * {
            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-text);
            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(to right, var(--forest-green) 40%, var(--forest-green-light) 100%);
            color: white;
            padding: 80px 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 60px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .tagline {
            display: inline-block;
            background-color: rgba(234, 88, 12, 0.2);
            color: var(--cream);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 20px;
            border-left: 4px solid var(--burnt-orange);
        }
        
        /* Content Sections */
        .section {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            color: var(--forest-green);
            font-size: 32px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--cream);
        }
        
        .section-subtitle {
            color: var(--burnt-orange);
            font-size: 20px;
            margin: 25px 0 15px;
        }
        
        .highlight {
            background-color: var(--cream);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .mission-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: var(--off-white);
            border-radius: 10px;
            border-top: 4px solid var(--burnt-orange);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--forest-green);
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: var(--light-text);
            font-weight: 500;
        }
        
        /* About Founder */
        .founder-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .founder-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .founder-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: var(--forest-green-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            border: 5px solid var(--cream);
        }
        
        .founder-info h3 {
            color: var(--forest-green);
            font-size: 28px;
            margin-bottom: 5px;
        }
        
        .founder-info p {
            color: var(--burnt-orange);
            font-weight: 600;
        }
        
        .qualification {
            background-color: var(--off-white);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--forest-green);
            margin: 15px 0;
        }
        
        .strengths {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .strength-tag {
            background-color: var(--cream);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background-color: var(--forest-green);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--cream);
        }
        
        .footer-section p {
            opacity: 0.8;
            margin-bottom: 15px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--burnt-orange);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 14px;
        }
        
        /* 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;
            }
        }