.hero-section-container {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-content {
  color: white;
  text-align: center;
  padding: 1rem;
  max-width: 90%;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-section-content h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}
.hero-banner {
  position: relative;
  background-image: url('/images/banner.jpg'); 
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 70vh; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-text {
  text-align: center;
  color: white;
  padding: 1rem;
}

.overlay-text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
@media (min-width: 1024px) {
  .overlay-text h1 {
    font-size: 4rem;
  }
  .hero-section-container {
    height: 80vh;
  }

  .hero-section-content h1 {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .hero-section-content h1 {
    font-size: 3rem;
  }
  .overlay-text {
  padding:0;
}

}
