.home-youtube {
  background: #fff;
}

.home-youtube h2 {
  font-size: 36px;
  line-height: 1.3;
}

.sub-text {
  font-size: 16px;
  line-height: 1.7;
}

.video-box {
  position: relative;
  width: 100%;
  padding-top: 56.5%; /* ✅ Perfect 16:9 ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ✅ Better on Mobile */
@media (max-width: 768px) {
  .home-youtube h2 {
    text-align: center;
    font-size: 28px;
  }

  .sub-text {
    text-align: center;
  }
}
