

.faq-question{
    width: 100%;
    height: 40px;
    background-color: var(--color3);
    border-bottom: 2px solid #fff;
    border-radius: 2px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 20px;
    position: relative;
}
.faq-question span{
    color: #fff;
}
.faq-toggle {
    position: absolute;
    right: 10px;
    color: #fff;
    font-size: 1.2em;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}
.faq-answer p{
    margin-left: 10px;
    font-size: 0.9em;
    margin-top: 15px;
}
.faq-answer ul{
    margin-left: 30px;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.active{
    max-height: 1000px; /* Ajusta este valor según el contenido más largo */
    opacity: 1;
}