/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
}

/* Hero Section */
header.hero {
  background: url("meekes-farm-wheat.jpg") no-repeat center center/cover;
  height: 100vh;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #218838;
}

/* About Section */
.about {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.about ul {
  list-style-type: none;
  padding: 0;
}

.about ul li {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Why Choose Us Section */
.why-us {
  padding: 60px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.why-us-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.benefit {
  width: 30%;
  margin: 20px;
}

.benefit h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonial {
  margin-bottom: 20px;
}

.testimonial p {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial cite {
  font-size: 1.1rem;
  color: #555;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact label {
  font-size: 1.1rem;
  margin-top: 10px;
  display: block;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact .btn {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact .btn:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #28a745;
  text-decoration: none;
}
