/* ==========================================================================
   Sell Your Home — Common Questions (FAQ accordion)
   ========================================================================== */

.me-sell-faq-section {
    background-color: #ffffff;
    padding: 90px 24px;
}

.me-sell-faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.me-sell-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.me-sell-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #16233b;
    margin: 0;
    letter-spacing: -0.3px;
}

.me-sell-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.me-sell-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.me-sell-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #ffffff;
    border: none;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #16233b;
    text-align: left;
    cursor: pointer;
}

.me-sell-faq-icon {
    font-size: 18px;
    color: #d8a94f;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.me-sell-faq-question[aria-expanded="true"] .me-sell-faq-icon {
    transform: rotate(45deg);
}

.me-sell-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
}

.me-sell-faq-answer p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 18px;
}

.me-sell-faq-item.me-faq-open .me-sell-faq-answer {
    max-height: 200px;
}

/* Mobile */
@media (max-width: 600px) {
    .me-sell-faq-section { padding: 56px 20px; }
    .me-sell-faq-title { font-size: 22px; }
    .me-sell-faq-question { font-size: 14px; padding: 16px 18px; }
    .me-sell-faq-answer { padding: 0 18px; }
}