 
        :root {
            --primary-color: #2d5016;
            --secondary-color: #6b8e4e;
            --accent-color: #f4a460;
            --light-bg: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(45, 80, 22, 0.7)),
                        url('image/2.png') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            background-color: #e09450;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Highlights Section */
        .highlights-section {
            padding: 80px 0;  
            color: rgb(0, 0, 0);
        }

        .highlight-box {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .highlight-box h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .highlight-box p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Lead Form Section */
        .form-section {
            padding: 80px 0;
            background: white;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: var(--light-bg);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-container h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .form-control {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #ddd;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
        }

        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            width: 100%;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: scale(1.02);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: white;
        }

        .about-section h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
        }

        .about-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        /* Location Section */
        .location-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .location-section h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }

        .location-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .location-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .footer p {
            margin: 0;
            opacity: 0.9;
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .sticky-cta button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .form-container {
                padding: 30px 20px;
            }

            .highlight-box h2 {
                font-size: 1.8rem;
            }

            .sticky-cta {
                bottom: 10px;
                right: 10px;
            }

            .sticky-cta button {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2.5rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
            margin-top: 15px;
        }

        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }
        
        
        
        
        
        
        
        .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.mobile-fixed-buttons .btn-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: white;
    background: #4c8f4c;
    border-right: 1px solid #ffffff40;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
}

.mobile-fixed-buttons .btn-item:last-child {
    border-right: none;
}

.mobile-fixed-buttons .btn-item:hover {
    background: #3f7a3f;
    color: #fff;
}

 