/* Hero Image Section Styles */
.hero-image-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  padding-bottom: 32px; /* Add bottom padding as requested */
  margin-top: 0; /* Remove extra space above */
}
.hero-image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) blur(0.5px);
}
.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-image-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero-image-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .hero-image-section {
    height: 260px;
    padding-bottom: 20px;
  }
  .hero-image-title {
    font-size: 2rem;
  }
  .hero-image-subtitle {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-image-section {
    height: 160px;
    padding-bottom: 12px;
  }
  .hero-image-title {
    font-size: 1.2rem;
  }
  .hero-image-subtitle {
    font-size: 0.95rem;
  }
}
