.hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.hero-caption h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'SF Pro Display';
}

.hero-caption p {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'SF Pro Display';
  text-transform: capitalize;
}

/* Optional: make it responsive */
@media (max-width: 768px) {
  .hero-caption h2 {
    font-size: 1.8rem;
  }
  .hero-caption p {
    font-size: 0.9rem;
  }
}


#image_section .image-card {
  position: relative;
  overflow: hidden;
}

#image_section .image-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Caption inside image at bottom */
#image_section .image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  
}

#image_section .image-caption p {
    color: #fff;
    font-size: 30px;
    text-align: center;
    text-transform: capitalize;
    font-family: 'SF Pro Display';
}