<style>
.image-box {
  width: 100%;
  height: 160px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.hero-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.step-box {
  flex: 1;
  padding: 1rem;
  max-width: 200px;
}

.step-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  margin: 0 1rem;
}

@media (max-width: 767px) {
  .arrow {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .fs-2.fw-bold.text-white {
    margin: 0.5rem 0;
  }
}
</style>