 /*menu desplegable de preguntas frecuentes*/
 .faq-container {
    width: 80%;
    margin: 0 auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
  
  .faq-answer {
    display: none;
    padding: 10px;
    border-left: 5px solid #00b0ff;
    background-color: #f5f5f5;
    margin-top: 10px;
  }
  
  .faq-question {
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .faq-question:after {
    content: "+";
    float: right;
    font-size: 10px;
    margin-left: 10px;
  }
  
  .faq-question.active:after {
    content: "-";
  }
  
  .faq-question.active {
    background-color: #00b0ff;
    color: #fff;
  }
  
  @media (max-width: 767px) {
    .faq-container {
      width: 90%;
      margin: 0 auto;
    }
  }  
  /* fin menu desplegable de preguntas frecuentes*/