.video-section-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .video-container {
    flex: 1;
    margin-right: 20px;
    position: relative;
    padding-bottom: 36.25%; /* Proporción 16:9 */
    height: 0;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  
  .video-text-container {
    flex: 1;
    max-width: 400px;
  }
  
  .video-text-container h2 {
    color: #8b1d42;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 28px;
  }
  
  .video-text-container h3 {
    color: #8b1d42;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .video-text-container p {
    color: #4b4b4b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  .more-videos-btn {
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    background: #761537;
    display: block;
    cursor: pointer;
    margin: 20px 0;
    color: #fff;
    text-align: center;
  }
  
  .more-videos-btn:hover {
    background-color: #6f1534;
  }
  

  @media only screen and (max-width: 768px) { 

    .video-section-container {
      display: initial;
      padding: 0;
    }
    
    .video-container{
      margin: 0;
      padding-bottom: 56.25%;
    }
    
    .video-text-container {
      max-width: 100%;
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .more-videos-btn {
      width: 300px;
    }


  }