/* Reset de márgenes y padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
  }
  
  /* Configuración de la sección de video */
  .banner-video-section {
    position: relative;
    width: 100vw;
    height: 650px; /* Altura fija */
    overflow: hidden;
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .content-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    color: white;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  
  /* Estilos para el texto en el lado izquierdo */
  .text-left {
    max-width: 40%;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .text-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .text-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f1f1f1;
  }
  
  /* Estilos del formulario */
  .contact-form-right {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form-right h2 {
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact-form-right form {
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input, 
  .form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus, 
  .form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
  }
  
  textarea {
    resize: none;
    height: 100px;
  }
  
  button {
    padding: 15px;
    background-color: #2E7D32;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #1b5e20;
  }
  
  /* Responsividad para móviles */
  @media (max-width: 768px) {
    .content-overlay {
      flex-direction: column;
      padding: 20px;
    }
  
    .text-left {
      max-width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .text-left h1 {
      font-size: 2.5rem;
    }
  
    .contact-form-right {
      width: 100%;
    }
    .banner-video-section {
      position: relative;
      width: 100vw;
      height: 1030px;
      overflow: hidden;
    }
    .content-overlay {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px;
      color: white;
      position: relative;
      z-index: 1;
      height: 100%;
      width: 100%;
    }
  }
  