.faq-container {
    width: 90%;
    margin: auto;
    max-width: 1100px;
    padding: 20px;
  }
  
  .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
  }
  
  .faq-pregunta {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #b714d8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }
  
  .faq-respuesta {
    display: none;
    padding: 0 15px 15px 15px;
    color: #333;
  }
  
  .faq-respuesta.visible {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .arrow.rotado {
    transform: rotate(180deg);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  