<style>
    :root {
        --primary: #2e7d32;
        --primary-dark: #1b5e20;
        --secondary: #ffa000;
        --light: #f5f5f5;
        --dark: #333;
        --gray: #757575;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Roboto', sans-serif;
        color: var(--dark);
        line-height: 1.6;
    }
    
    h1, h2, h3, h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--primary-dark);
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header */
    header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 50px;
        margin-right: 10px;
    }
    
    .logo-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 24px;
        color: var(--primary);
    }
    
    .logo-text span {
        color: var(--secondary);
    }
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 30px;
    }
    
    nav ul li a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: color 0.3s;
    }
    
    nav ul li a:hover {
        color: var(--primary);
    }
    
    .cta-button {
        background-color: var(--secondary);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 500;
        transition: background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #ff8f00;
        color: white;
    }
    
    /* Hero Section */
    .hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        padding-top: 80px;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: white;
    }
    
    .hero p {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    /* Services */
    .services {
        padding: 80px 0;
        background-color: var(--light);
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .section-title p {
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-content h3 {
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .service-content p {
        color: var(--gray);
        margin-bottom: 20px;
    }
    
    /* Crops */
    .crops {
        padding: 80px 0;
    }
    
    .crops-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .crop-item {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        background-color: var(--light);
        transition: all 0.3s;
    }
    
    .crop-item:hover {
        background-color: var(--primary);
        color: white;
    }
    
    .crop-item i {
        font-size: 40px;
        margin-bottom: 15px;
        color: var(--primary);
    }
    
    .crop-item:hover i {
        color: white;
    }
    
    /* About */
    .about {
        padding: 80px 0;
        background-color: var(--light);
    }
    
    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .about-content h2 {
        margin-bottom: 20px;
    }
    
    .about-content p {
        margin-bottom: 20px;
        color: var(--gray);
    }
    
    /* Testimonials */
    .testimonials {
        padding: 80px 0;
        background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('https://images.unsplash.com/photo-1532339142463-fd0a8979791a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        color: white;
    }
    
    .testimonials h2 {
        color: white;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .testimonial-card {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
    
    .testimonial-card p {
        font-style: italic;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
    }
    
    .author-info h4 {
        color: white;
        margin-bottom: 5px;
    }
    
    .author-info p {
        font-style: normal;
        opacity: 0.8;
        font-size: 14px;
    }
    
    /* Contact */
    .contact {
        padding: 80px 0;
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .contact-info h3 {
        margin-bottom: 20px;
    }
    
    .contact-details {
        margin-bottom: 30px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        background-color: var(--light);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: 'Roboto', sans-serif;
    }
    
    .contact-form textarea {
        height: 150px;
    }
    
    .contact-form button {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.3s;
    }
    
    .contact-form button:hover {
        background-color: var(--primary-dark);
    }
    
    /* Footer */
    footer {
        background-color: var(--dark);
        color: white;
        padding: 50px 0 20px;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 24px;
        color: white;
        margin-bottom: 20px;
        display: block;
    }
    
    .footer-logo span {
        color: var(--secondary);
    }
    
    .footer-about p {
        opacity: 0.8;
        margin-bottom: 20px;
    }
    
    .social-links 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%;
        margin-right: 10px;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .social-links a:hover {
        background-color: var(--secondary);
    }
    
    .footer-links h3 {
        color: white;
        margin-bottom: 20px;
        font-size: 18px;
    }
    
    .footer-links ul {
        list-style: none;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links ul li a:hover {
        color: var(--secondary);
    }
    
    .copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.8;
        font-size: 14px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .header-container {
            flex-direction: column;
            padding: 15px 0;
        }
        
        nav ul {
            margin-top: 20px;
        }
        
        nav ul li {
            margin: 0 10px;
        }
    
        .hero h1 {
            font-size: 36px;
        }
        
        .hero p {
            font-size: 18px;
        }
        
        .about-container,
        .contact-container {
            grid-template-columns: 1fr;
        }
        
        .about-image {
            order: -1;
        }
    }
</style>