@media (max-width: 600px) {
    .how-it-works-video-container {
        width: 100% !important;
    }
}

.image-container {
  position: relative;
  max-height: 620px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #5F48D9;
  border: none;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.80;
}

.play-button:hover {
  background-color: #4349b1;
}

.play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.play-button svg {
  fill: white;
  width: 24px;
  height: 24px;
}