/* --- FAQ Accordion --- */
.faq-accordion {
    width: 100%;
    max-width: none;
    margin: 10px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 18px 0px;
    font-size: 20px;
    font-weight: 400;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question:focus {
    outline: none;
}

.faq-icon {
    font-size: 20px;
    color: #28a745;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
    margin-top: 4px;
}

.faq-answer-inner {
    padding: 0 20px 18px 20px;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.7;
    font-size: 17px;
}

body.dark-theme .faq-item {
    border-bottom: 1px solid #4a4a4a;
}

body.dark-theme .faq-answer-inner {
    color: rgba(221, 221, 221, 0.8);
}

