.video-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #eef2f5 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden; 
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-section__header {
  margin-bottom: 50px; 
}

.video-section__title {
  color: var(--text-dark);
  font-size: clamp(2rem, 5vw, 2.8rem); 
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px; 
}

.video-section__subtitle {
  color: var(--text-light);
  font-size: clamp(1rem, 2.5vw, 1.15rem); 
  max-width: 700px;
  margin: 0 auto; 
  line-height: 1.7;
}

.video-container-outer {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px; 
  background-color: var(--white); 
  border-radius: 24px; 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07); 
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.video-container-outer:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.09);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 16px; 
  background-color: #000; 
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px; 
}

@media (max-width: 992px) {
  .video-section {
    padding: 80px 0;
  }
  .video-container-outer {
    padding: 12px;
    border-radius: 20px;
  }
  .video-wrapper iframe {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 20px; 
  }
  .video-section__title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .video-section__subtitle {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
  .video-container-outer {
    max-width: 100%;
    padding: 10px;
    border-radius: 16px;
  }
   .video-wrapper iframe {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 50px 15px;
  }
  .video-container-outer {
    padding: 8px;
    border-radius: 12px;
  }
  .video-wrapper iframe {
    border-radius: 8px;
  }
}