/* Hero Image Component Styles */
.hero-image-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hero-image-container {
  width: 100%;
  height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive Adjustments */
@media screen and (max-width: 1040px) {
  .hero-image-container {
    height: 720px;
  }
}

@media (max-width: 640px) {
  .hero-image-container {
    height: 375px;
  }
}