
.faq-wrapper {
    max-width: 1280px;
    margin: 40px auto;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 48px 24px;
    box-sizing: border-box;
    direction: rtl; /* اتجاه من اليمين لليسار */
    text-align: right; /* محاذاة النص */
}
.faq-container {
    background: transparent;
    padding: 0;
}
.faq-heading {
    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 {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    background: #ffffff;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
    font-weight: 600;
    font-size: 16px;
    color: #222222;
    text-align: right; /* محاذاة النص داخل السؤال */
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-icon {
    color: #0047AB;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.2s;
    margin-right: 16px; /* تعديل هامش RTL */
    margin-left: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.2s;
    background: transparent;
    padding: 0 24px;
    text-align: right; /* محاذاة النص في الإجابة */
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 16px 24px 20px;
}
.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    text-align: right; /* محاذاة النص في الفقرة */
}
/* توافق مع الجوال */
@media (max-width: 768px) {
    .faq-wrapper {
        padding: 36px 20px;
        margin: 30px auto;
    }
    .faq-heading {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
    .faq-icon {
        font-size: 18px;
        margin-right: 12px; /* تعديل هامش RTL للجوال */
        margin-left: 0;
    }
    .faq-item.active .faq-answer {
        padding: 12px 20px 16px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}
