   /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background-color: #16a085;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .logo-icon::before {
            content: "🌱";
            font-size: 24px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
        }

        .logo-subtext {
            font-size: 0.875rem;
            color: #666;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            font-weight: 500;
            color: #555;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #16a085;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #16a085;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://placehold.co/1920x1080/e3f2c1/e3f2c1');
            opacity: 0.1;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .hero-text h1 span {
            color: #16a085;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: #16a085;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #148f77;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 160, 133, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: #16a085;
            border: 2px solid #16a085;
        }

        .btn-secondary:hover {
            background-color: #16a085;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 160, 133, 0.2);
        }

        .hero-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .hero-image img {
            border-radius: 16px;
        }

        .farm-size {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .farm-size h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #16a085;
            margin-bottom: 0.25rem;
        }

        .farm-size p {
            font-size: 0.875rem;
            color: #666;
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
        }

        section:nth-child(even) {
            background-color: #f8f9fa;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background-color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .operations {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 16px;
        }

        .operations h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .operations-list {
            list-style: none;
        }

        .operations-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #555;
        }

        .operations-list li::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: #16a085;
            border-radius: 50%;
        }

        .research-partnership {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 2rem;
        }

        .research-partnership h4 {
            font-weight: 600;
            color: #2e7d32;
            margin-bottom: 0.5rem;
        }

        .research-partnership p {
            color: #388e3c;
            font-size: 0.95rem;
        }

        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .card {
            background-color: #f1f8e9;
            padding: 2rem;
            border-radius: 16px;
            border-left: 4px solid #8bc34a;
        }

        .card h3 {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .card p {
            color: #555;
            line-height: 1.7;
        }

        .core-values {
            text-align: center;
            margin-top: 4rem;
        }

        .core-values h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 3rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .value-icon.sustainability {
            background-color: #e8f5e8;
        }

        .value-icon.innovation {
            background-color: #e3f2fd;
        }

        .value-icon.quality {
            background-color: #fff8e1;
        }

        .value-icon::before {
            font-size: 2rem;
        }

        .value-icon.sustainability::before {
            content: "🌱";
            color: #43a047;
        }

        .value-icon.innovation::before {
            content: "💡";
            color: #1e88e5;
        }

        .value-icon.quality::before {
            content: "🏆";
            color: #ffb300;
        }

        .value-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
        }

        /* Team Section */
        .team {
            background-color: #f8f9fa;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .team-member {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-member-header {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .team-member-header.chairman {
            background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
        }

        .team-member-header.director {
            background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
        }

        .team-member-header.manager {
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
        }

        .team-member-icon {
            font-size: 3rem;
            opacity: 0.8;
        }

        .team-member-icon::before {
            content: "👥";
        }

        .team-member-header.director .team-member-icon::before {
            content: "🎓";
        }

        .team-member-header.manager .team-member-icon::before {
            content: "💼";
        }

        .team-member-header p {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .team-member-body {
            padding: 1.5rem;
        }

        .team-member-body h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .team-member-body p {
            color: #16a085;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-member-body .education, 
        .team-member-body .experience {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .team-member-body strong {
            font-weight: 600;
        }

        /* Farms Section */
        .farms {
            background-color: white;
        }

        .farms-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .farm-card {
            background-color: #f8f9fa;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .farm-card:hover {
            transform: translateY(-5px);
        }

        .farm-header {
            height: 120px;
            background: linear-gradient(135deg, #c8e6c9 0%, #81c784 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .farm-header .icon {
            font-size: 3rem;
            color: #388e3c;
            margin-right: 1rem;
        }

        .farm-header h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
        }

        .farm-body {
            padding: 1.5rem;
        }

        .farm-info {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .farm-info-icon {
            font-size: 1.5rem;
            color: #16a085;
            margin-top: 0.25rem;
        }

        .farm-info-text h4 {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.25rem;
        }

        .farm-info-text p {
            color: #666;
            font-size: 0.95rem;
        }

        .features {
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .features h4 {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            color: #555;
            font-size: 0.9rem;
        }

        .features-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: #16a085;
            border-radius: 50%;
        }

        /* Partners Section */
        .partners {
            background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
            padding: 6rem 0;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .partner-card {
            background-color: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-5px);
        }

        .partner-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 2.5rem;
        }

        .partner-icon.iita {
            background-color: #e8f5e8;
            color: #43a047;
        }

        .partner-icon.ocp {
            background-color: #e3f2fd;
            color: #1e88e5;
        }

        .partner-icon.atb {
            background-color: #fff8e1;
            color: #ffb300;
        }

        .partner-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .partner-card p.subtitle {
            color: #666;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .partner-card p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Goals Section */
        .goals {
            background-color: white;
        }

        .goals-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .goal-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }

        .goal-item:hover {
            transform: translateX(5px);
        }

        .goal-number {
            width: 40px;
            height: 40px;
            background-color: #16a085;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .goal-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .goal-content p {
            color: #666;
        }

        .goal-item:nth-child(1) .goal-number {
            background-color: #1976d2;
        }

        .goal-item:nth-child(2) .goal-number {
            background-color: #388e3c;
        }

        .goal-item:nth-child(3) .goal-number {
            background-color: #f57c00;
        }

        .goal-item:nth-child(4) .goal-number {
            background-color: #7b1fa2;
        }

        .goals-footer {
            text-align: center;
            margin-top: 3rem;
        }

        .goals-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background-color: #e8f5e8;
            color: #2e7d32;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            background-color: #f8f9fa;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background-color: #e8f5e8;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #43a047;
            font-size: 1.5rem;
        }

        .contact-text h4 {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.25rem;
        }

        .contact-text p {
            color: #666;
        }

        .contact-form {
            background-color: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: #555;
            margin-bottom: 0.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #16a085;
            box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: #16a085;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background-color: #148f77;
        }

        /* Footer */
        footer {
            background-color: #212529;
            color: #fff;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background-color: #16a085;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .footer-logo-icon::before {
            content: "🌱";
            font-size: 20px;
        }

        .footer-logo-text {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .footer-logo-subtext {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .footer-about p {
            color: #adb5bd;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #343a40;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: background-color 0.3s ease;
        }

        .social-link:hover {
            background-color: #16a085;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #adb5bd;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #16a085;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #343a40;
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 2.75rem;
            }

            .values-grid,
            .team-grid,
            .farms-grid,
            .partners-grid {
                grid-template-columns: 1fr;
            }

            .goals-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0;
            }

            .hero-text h1 {
                font-size: 2.25rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1.1rem;
            }

            section {
                padding: 4rem 0;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                display: none;
            }

            .mobile-menu.active {
                display: block;
            }

            .mobile-menu ul {
                list-style: none;
            }

            .mobile-menu li {
                margin-bottom: 1rem;
            }

            .mobile-menu a {
                display: block;
                padding: 0.5rem 0;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                width: 95%;
                padding: 0 15px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .core-values h3 {
                font-size: 1.75rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile menu button - only visible on mobile */
.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
}

/* Mobile menu dropdown - hidden by default */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 1000;
}

/* Show mobile menu only when 'active' class is added */
.mobile-menu.active {
    display: block;
}

/* Only show mobile menu button on small screens */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block; /* Show only on mobile */
    }

    nav ul.desktop-nav {
        display: none; /* Hide desktop nav on mobile */
    }
}

/* On desktop and larger screens, always hide mobile menu */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important; /* Force hide on desktop */
    }

    .mobile-menu.active {
        display: none !important; /* Even if active, hide on desktop */
    }
}