﻿/* کل بخش */
.afq-section {
    padding: 70px 20px;
}

/* کانتینر دو ستونه */
.afq-container {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    align-items: flex-start;
    direction:rtl
}

/* هر ستون */
.afq-about,
.afq-faq {
    flex: 1;
}

/* عنوان‌ها */
.afq-title {
    font-size: 22px;
    margin-bottom: 20px;
}

/* درباره ما */
.afq-text {
    direction: rtl;
    font-weight: 900;
    font-size: 14px;
    line-height: 2;
    color: #000000;
    margin-bottom: 15px;
    text-align: justify;
}

/* FAQ آیتم */
.afq-item {
    background: #111827;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

/* سوال */
.afq-q {
    padding: 14px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: ghostwhite;
}

    /* علامت */
    .afq-q::after {
        content: "+";
        position: absolute;
        left: 12px;
    }

/* جواب */
.afq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.8;
    transition: 0.3s ease;
}

/* باز شدن */
.afq-item.active .afq-a {
    max-height: 200px;
    padding: 12px 14px;
}

.afq-item.active .afq-q::after {
    content: "−";
}

/* ریسپانسیو */
@media(max-width:900px) {
    .afq-container {
        flex-direction: column;
    }
}
