
.faq-section {
    max-width: 1280px;
    margin: 40px auto;
    background-color: #f9fafb;   /* خلفية رمادية فاتحة موحدة */
    border-radius: 24px;
    padding: 48px 24px;
    direction: rtl;              /* اتجاه النص من اليمين لليسار */
    text-align: right;
}
.faq-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #222222;              /* عنوان داكن */
    text-align: center;
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: transparent;
    border: none;
}
.faq-question {
    background: #ffffff;         /* بطاقة سؤال بيضاء */
    border-radius: 16px;
    padding: 16px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #222222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;   /* إضافة حدود خفيفة لتتناسق مع النمط العام */
}
.faq-question:hover {
    background: #f8fafc;          /* تغيير لون خفيف عند التحويم */
}
.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #0047AB;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-right: 16px;           /* هامش يمين بدلاً من اليسار لـ RTL */
    margin-left: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    padding: 0 24px;
    text-align: right;            /* محاذاة النص لليمين */
}
.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 12px 0 16px;
}
.faq-answer strong {
    font-weight: 600;
    color: #0047AB;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 500px;           /* زيادة الارتفاع لاستيعاب المحتوى الطويل */
}
/* توافق مع الجوال */
@media (max-width: 768px) {
    .faq-section {
        padding: 36px 20px;
    }
    .faq-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .faq-question {
        font-size: 16px;
        padding: 14px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-icon {
        margin-right: 12px;       /* هامش يمين للجوال */
        margin-left: 0;
        font-size: 20px;
    }
}
