/* FAQ Page Specific Styles */

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e5e7eb;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 2000px;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0 1rem 2rem;
}

.faq-answer li {
    margin: 0.5rem 0;
}

.faq-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.faq-answer h5 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}