body {
    background-color: #ebe0d1;
    margin: 0;
}

main {
    padding: 20px;
}

h1 {
    color:#5d4037;
    margin-top: 10px;
}

h2 {
    color: #5d4037;
}

nav {
    background-color: #2e7d32;
    padding: 5px 0;
}

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

nav ul {
    list-style: none;
    display: flex;
    padding: 10px;
    margin: 0;
}

nav ul li {
    margin-right: 20px;
}

nav a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-text{
    max-width: 400px;
}

.hero-image {
    max-width: 300px;
    margin: 0;
}

.hero img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.products {
    text-align: center;
}

.product {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}
form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
}

button {
    background-color: #2e7d32;
    color: white;
    padding: 10px 15px;
    border: 2px solid #1b5e20;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #22972a;
}

a:focus, button:focus {
    outline: 2px solid #1b5e20;
}

.blog-post {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-post a:hover {
    text-decoration: underline;
}

.about-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.contact-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 5px;
}

.newsletter {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
}

.newsletterForm {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
}

#newsletterForm {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    margin: 40px auto;
}

#newsletterForm input {
    text-align: left;
}

#newsletterForm button {
    margin-top: 10px;
}

.resources img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
}
.final-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 5px; 
}

.newsletter-image {
    max-width: 100px;
    width: auto;
    height: auto;
    display: block;
    margin: 20px auto;
}