.video-title {
  text-align: center;
  margin-top: 2.75rem;
  margin-bottom: 2.5rem;
}
p.mrbahmed-plan-description {
  padding: 0% 1.5rem;
  font-weight: 600;
}
.the-gift-container {
  display: flex;
  justify-content: start;
  align-items: center;
  /* flex-direction: column; */
  margin-top: 2.5rem;
}
.plan-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 default */
  height: 0;
  overflow: hidden;
  width: 60%;
  max-width: 800px;
  /* margin: 0 auto; */
}
.cta-container {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #0030a8;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px #01206d;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .plan-video-container {
    padding-bottom: 100%;
    max-width: 100%;
  }

  .the-gift-container {
    flex-direction: column;
  }
}
