/* faq page styles - Extracted from inline style */

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.faq-item:hover {
    border-color: var(--primary-color);
}
.faq-item.active {
    border-color: var(--primary-color);
}
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}
.faq-question i {
    color: var(--primary-color);
    transition: var(--transition-normal);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--gray-600);
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
}