.video-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
  position: relative;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  color: #4360ed;
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  width: 85%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.video-iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

.video-description {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.video-description p {
  color: #37474f;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 992px) {
  .video-wrapper {
      width: 90%;
  }
}

@media (max-width: 768px) {
  .video-section {
      padding: 3rem 0;
  }
  
  .section-header {
      font-size: 2rem;
      margin-bottom: 1.5rem;
  }
  
  .video-wrapper {
      width: 95%;
      border-radius: 12px;
  }
  
  .video-description p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-header {
      font-size: 1.75rem;
  }
  
  .video-description p {
      line-height: 1.6;
  }
}