        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #fafafa;
            color: #2d3e2d;
            line-height: 1.6;
        }

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

        /* Header */
        header {
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(76, 175, 80, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4CAF50;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo::before {
            content: "🥬";
            font-size: 1.5rem;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #2d3e2d;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #4CAF50;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #4CAF50;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            text-align: center;
            background: linear-gradient(135deg, #fafafa 0%, #f0f8f0 100%);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: #2d3e2d;
            margin-bottom: 0.5rem;
        }

        .hero .tagline {
            font-size: 1.8rem;
            color: #4CAF50;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .hero p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Search Section */
        .search-section {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            max-width: 600px;
            margin: 0 auto 4rem;
            border: 1px solid rgba(76, 175, 80, 0.1);
        }

        .search-container {
            position: relative;
            display: flex;
            gap: 1rem;
        }

        .search-input {
            flex: 1;
            padding: 1.2rem 1.5rem;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 1.1rem;
            outline: none;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .search-input:focus {
            border-color: #4CAF50;
            background: white;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

        .search-btn {
            padding: 1.2rem 2rem;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #45a049;
            transform: translateY(-1px);
        }

        /* Tree Message */
        .tree-message {
            background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 2rem;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }

        .tree-message .tree-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .tree-message h3 {
            color: #4CAF50;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .tree-message p {
            color: #666;
            font-size: 1rem;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: white;
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #2d3e2d;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: #fafafa;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(76, 175, 80, 0.1);
        }

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

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #2d3e2d;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            font-size: 1rem;
        }

        .partner-card {
            background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
            border: 2px solid rgba(76, 175, 80, 0.2);
        }

        .partner-btn {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .partner-btn:hover {
            background: #45a049;
            transform: translateY(-1px);
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .coming-soon {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            border-radius: 12px;
            display: inline-block;
            margin-top: 1rem;
            font-weight: 600;
        }

        .cta-contact-btn {
            background: rgba(255, 255, 255, 0.9);
            color: #4CAF50;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-contact-btn:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* Page Content (Hidden by default) */
        .page-content {
            display: none;
            padding: 120px 0 80px;
            min-height: 100vh;
        }

        .page-content.active {
            display: block;
        }

        .page-content h1 {
            font-size: 3rem;
            color: #2d3e2d;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .page-content h2 {
            font-size: 2rem;
            color: #4CAF50;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .page-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            max-width: 800px;
        }

        .back-btn {
            background: #4CAF50;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            margin-bottom: 2rem;
            transition: background 0.3s ease;
        }

        .back-btn:hover {
            background: #45a049;
        }

        /* Footer */
        footer {
            background: #2d3e2d;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .tagline {
                font-size: 1.3rem;
            }

            .search-container {
                flex-direction: column;
            }

            .features h2, .cta h2 {
                font-size: 2rem;
            }

            .page-content h1 {
                font-size: 2rem;
            }
        }


.tree-btn {
    display: inline-block;
    margin-top: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.tree-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
}