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

header {
    background-color: #006400; /* Dark green for an agricultural feel */
    color: white;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
}

section {
    background: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #006400;
    border-bottom: 2px solid #006400;
    padding-bottom: 0.5rem;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, textarea, button {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #32CD32; /* Lime green */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #228B22; /* Forest green */
}

.contact-info {
    flex: 1;
    background-color: #e9e9e9;
    padding: 1rem;
    border-radius: 5px;
}

#formStatus.success {
    color: green;
    margin-top: 1rem;
}

#formStatus.error {
    color: red;
    margin-top: 1rem;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #006400;
    color: white;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
