  /* Base Style */

        
        :root {
            --forest-green: #065f46;
            --dark-green: #134e4a;
            --burnt-orange: #ea580c;
            --warm-orange: #f97316;
            --cream: #fef3c7;
            --off-white: #fdfaf3;
            --light-gray: #f5f5f5;
            --medium-gray: #777;
            --dark-gray: #333;
            --light-text: #f8fafc;
        }

       * {
            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 {
            width: 90%;
            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.9), rgba(19, 78, 74, 0.9)), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--cream);
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--warm-orange);
            color: white;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--warm-orange);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--cream);
        }
        
        /* Main Content */
        245
{
            padding: 4rem 0;
            display: grid;
grid-template-columns: 1fr;            gap: 3rem;
        }
        
        /* Form Styles */
        .form-section {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--forest-green);
        }
        
        .form-section h2 {
            color: var(--forest-green);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-section h2 i {
            color: var(--warm-orange);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-green);
        }
        
        input, select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        input:focus, select:focus {
            outline: none;
            border-color: var(--forest-green);
            box-shadow: 0 0 0 2px rgba(6, 95, 70, 0.1);
        }
        
        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        
        .checkbox-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkbox-option input {
            width: auto;
        }
        
        .submit-btn {
            background-color: var(--forest-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 1rem;
        }
        
        .submit-btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(6, 95, 70, 0.2);
        }
        
        /* Info Section */
        .info-section {
            background-color: var(--cream);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }
        
        .info-section h2 {
            color: var(--forest-green);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-section h2 i {
            color: var(--warm-orange);
        }
        
        .info-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--warm-orange);
        }
        
        .info-card h3 {
            color: var(--dark-green);
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        
        .info-card p {
            color: var(--medium-gray);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .feature i {
            color: var(--forest-green);
            background-color: rgba(6, 95, 70, 0.1);
            padding: 10px;
            border-radius: 50%;
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-green);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            color: var(--cream);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-column p {
            color: #ccc;
            margin-bottom: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--warm-orange);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            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;
            }
        }
        
        487
{
            .section {
                padding: 25px;
            }
            
            .founder-header {
                flex-direction: column;
                text-align: center;
            }
            
            .hero {
                padding: 60px 0;
              	
	.main-content {
		grid-template-columns: 1fr;
	}	
	.features {
		grid-template-columns: 1fr;
	}
            }
        }

@media (min-width: 768px) {
	.main-content {
		grid-template-columns: 1fr 1.5fr;
	}
}
        
        @media (min-width: 993px) {
            .mobile-nav,
            .menu-overlay,
            .mobile-menu-toggle {
                display: none;
            }

        }

