/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: #8b8d2e;
    color: white;
    padding: 15px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    font-size: 18px;
    color: white;
}

header nav ul li a:hover {
    color: #f4d03f; /* Hover effect for links */
}

/* Homepage Section */
#home {
    text-align: center;
    padding: 50px 20px;
    background-color: #eaf2f8;
}

.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.intro h1 {
    font-size: 36px;
    margin: 20px 0;
}

.intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #8b8d2e;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #f4d03f; /* Hover effect */
}

/* About Us Section */
#about {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Products Section */
#products {
    padding: 40px 20px;
    background-color: #eaf2f8;
    text-align: center;
}

.product {
    margin-bottom: 20px;
}

.product img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.product p {
    font-size: 18px;
    margin-top: 10px;
}

/* Farm Practices Section */
#farm-practices {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

#farm-practices p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

#farm-practices img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

/* Contact Us Section */
#contact {
    padding: 40px 20px;
    background-color: #eaf2f8;
    text-align: center;
}

form {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button[type="submit"] {
    background-color: #8b8d2e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button[type="submit"]:hover {
    background-color: #f4d03f; /* Hover effect */
}

/* Footer */
footer {
    background-color: #8b8d2e;
    text-align: center;
    padding: 15px;
    color: white;
    margin-top: 40px;
}

footer p {
    font-size: 16px;
}

footer a {
    color: white;
}

footer a:hover {
    color: #f4d03f; /* Hover effect */
}
