/* FAQ SECTION STYLES */

#faq {
    margin-top: 90px;
}

.faq-main-wrapper {
    width: 100%;
}

.faq-main-header {
    margin-bottom: 0;
    user-select: none;
}

.faq-main-header p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.faq-main-toggle {
    display: inline-block;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-items-wrapper {
    /* Controlled by JavaScript */
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: #e9ecef;
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    /* Inherits from global CSS (custom.css h3 rules) */
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 20px;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: #666;
    margin-left: 15px;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    /* Controlled by JavaScript */
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
}
