.video-section {
  display: flex; /* Untuk memposisikan container video di tengah */
  justify-content: center; /* Tengah horizontal */
  margin-top: 30px; /* Berikan sedikit jarak dari atas */
  margin-bottom: 30px; /* Berikan sedikit jarak dari bawah */
  width: 100%; /* Pastikan section mengambil lebar penuh parent */
}

.video-container {
  position: relative;
  padding-bottom: 30%; /* 16:9 aspect ratio (315 / 560 = 0.5625) */
  height: 0;
  overflow: hidden;
  width: 50%; /* Sesuaikan lebar container video sesuai keinginan (80% seperti contoh) */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}