  .video-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 650px;
    padding-left: 20px;
    padding-right; 20px;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    overflow: hidden;
    margin: 0 auto;
  }

  .video-container video {
    object-fit: cover; 
  }
  

  .fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 80%);
    z-index: 5;
  }
  

  .text-overlay {
    position: absolute;
    bottom: 10%; 
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    z-index: 10;
    width: 65%;
  }
  
  .text-overlay h1 {
    font-family: arial, helvetica, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #4b4b45;
    margin-bottom: 10px;
  }
  
  .highlight {
    font-size: 28px;
    font-weight: 700;
  }
  
  .text-overlay p {
    font-family: arial, helvetica, sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #cb1c10; 
    margin: 0;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  .fade-in-element {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
  }
  
  .first-line {
    animation-delay: 1s; 
  }
  
  .second-line {
    animation-delay: 2.5s; 
  }
  
  @media (max-width: 768px) {
    .text-overlay h1 {
      font-size: 28px;
    }
    
    .text-overlay p {
      font-size: 32px;
    }
  }
  
  /* Responsive styling for mobile */
  @media (max-width: 768px) {
    .text-overlay h1 {
      font-size: 28px;
    }
    
    .text-overlay p {
      font-size: 32px;
    }
  }
