/* Estilos para el acordeón FAQ */
.faq-trigger.active i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}