.single-post-faq {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.faq-heading {
    font-size: 20px;
    font-weight: 700;
    color: rgb(25, 42, 61);
    margin: 0 0 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgb(25, 42, 61);
    cursor: pointer;
    list-style: none;
    line-height: 1.5;
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: #FFDB5E;
}

.faq-answer {
    padding: 4px 0 20px;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgb(58, 79, 102);
    margin: 0;
}

@media (max-width: 640px) {
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }
}