.promo-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 2px solid #000;
  }
  
  .promo-content h2 {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
  }
  
  .promo-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .promo-body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .servicios-lista {
    text-align: left;
    list-style: disc;
    padding-left: 20px;
  }
  
  .servicios-lista li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .hidrojet-img {
    max-width: 200px;
    height: auto;
  }
  
  .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-size: 16px;
  }
  
  .btn.whatsapp {
    background-color: #25D366;
  }
  
  .btn.telefono {
    background-color: #003049;
  }
  
  .btn:hover {
    opacity: 0.85;
  }
  @media (max-width: 768px) {
    .promo-content h2 {
      font-size: 22px;
    }
  
    .promo-content p {
      font-size: 14px;
    }
  
    .promo-body {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .servicios-lista {
      text-align: center;
      padding-left: 0;
      list-style: none;
    }
  
    .servicios-lista li {
      font-size: 15px;
    }
  
    .hidrojet-img {
      max-width: 80%;
    }
  
    .button-group {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .btn {
      width: 200px;
      font-size: 15px;
    }
  }
  