.faq-answer-hidden {

}

.faq-category {
    margin-bottom: 20px;
}

.faq-category-title {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--text-secondary);
}

.faq-item-container {
    background-color: var(--dark-card);
    padding: 15px;
    transition: height 0.3s ease-out;
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq-question {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.faq-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-arrow {
    border-top-color: var(--accent);
}

.faq-item-container.open .faq-arrow {
    transform: translateY(-50%) rotate(180deg);
}