/* HERO SECTION WITH IMAGE */
.hero {
  position: relative;
  height: 350px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7); /* This makes the text easier to read */
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 10px;
  color: white !important; /* Overrides the green h2 color for this section */
}

.hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}