body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    color: #212121;
}
/* Header Styling */
header {
    background-color: white;
    padding: 1em 0;
    border-bottom: 1px solid #ddd;
}
.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #212121;
}

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

nav li {
    margin-left: 20px;
}
nav a {
    text-decoration: none;
    color: #212121;
    padding: 5px;
}
nav a:hover {
    text-decoration: underline;
}
.social-icons a {
    margin-left: 10px;
}
.search-icon {
   cursor: pointer;
}
/* Banner styling */
.banner {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.8;
}

.banner-content {
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.banner-content button {
    background-color: #212121;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 8px;
    
}
/* Hero Section Styling */
.hero-section {
  position: relative; /* Establish a positioning context for the hero */
  height: 500px; /* Or whatever your desired height */
  overflow: hidden;
}
.hero-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* make it a positioning context */
}
.hero-text-container {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}
.hero-text {
   color: black;
   width: 600px;
}
.hero-text h2 {
   margin-bottom: 30px;
   color: green;
  font-size: 32px;
}
.hero-text p {
  line-height: 1.5;
  font-size: 18px;
  font-family: 'Calibri', sans-serif;
}


/* Growing Section Styling */
.growing-section {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    align-items: center;
}
.growing-image {
   width: 50%;
   padding-right: 20px;
}
.growing-image img {
   width: 100%;
   max-width: 400px;
}
.growing-content {
   color: black;
   width: 50%;
}
.growing-content h2 {
   margin-bottom: 10px;
   color: green;
}
.growing-content p {
  line-height: 1.5;
  font-size: 18px;
  font-family: 'Calibri', sans-serif;
}


/* Footer Styling */
/*
footer {
    background-color: #f0f0f0;
    padding: 2em 0;
    border-top: 1px solid #ddd;
}
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.newsletter {
    text-align: left;
}
.newsletter form {
  display: flex;
  flex-direction: column;
}
.newsletter input {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.newsletter button {
    background-color: #212121;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 8px;
}
.footer-logo {
   
}
.footer-logo a {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #212121;
}
.recaptcha-text {
 font-size: 0.7em;
 margin-top: 5px;
}
.copyright {
    margin-top: 10px;
}*/
footer {
  background-color: #f7f7f7; /* Lighter background color */
  padding: 40px 0; /* More padding for breathing room */
  font-family: 'Calibri', sans-serif; /* Use Calibri font for a cleaner look */
}

.footer-container {
  width: 80%; /* Adjust width for better spacing */
  max-width: 1200px; /* Maximum width for larger screens */
  margin: 0 auto; /* Center the container */
  display: flex;
  flex-direction: column; /* Stack contact form and bottom section */
}

/* Contact Form Styling */
.contact-section {
  margin-bottom: 30px; /* Add space below the contact form */
}

.contact-section h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333; /* Darker heading color */
}

#contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px; /* Limit form width */
}

#contact-form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

#contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical; /* Allow vertical resizing */
  min-height: 30px;
}

#contact-form button {
  background-color: #333; /* Darker button color */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contact-form button:hover {
  background-color: #555; /* Slightly darker on hover */
}

/* Bottom Footer Styling */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding-top: 20px;
  border-top: 1px solid #ddd; /* Add a subtle top border */
}

.footer-logo a {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.social-icons a {
  display: inline-block;
  margin-left: 10px;
}

.social-icons img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.copyright p {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}
/* Mobile Styling */
@media (max-width: 768px) {
  .growing-section {
   flex-direction: column;
   text-align: center;
  }
  .growing-image {
     width: 100%;
    padding-right: 0px;
     padding-bottom: 20px;
    }
  .growing-content {
    width: 100%;
    text-align: center;
   }
    .header-container {
      flex-direction: column;
      text-align: center;
    }
    nav ul {
    flex-direction: column;
    align-items: center;
    }
    nav li {
     margin-left: 0;
      margin-bottom: 10px;
    }
   .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .newsletter{
      margin-bottom: 20px;
    }
     .newsletter form {
      align-items: center;
     }
    .social-icons {
     margin-top: 20px;
    }
}
