
/* وحدة الأسئلة الشائعة - الأسئلة باللون الأسود، الروابط بدون خط سفلي افتراضيًا، مع ظهور الخط السفلي عند التمرير */
.faq-module {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    margin: 24px 0;
}
.faq-module__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
    box-sizing: border-box;
}
.faq-module__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #222222;
    text-align: center;
    margin-bottom: 24px;
}
.faq-module__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-module__item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-module__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.faq-module__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #222222;
    cursor: pointer;
    background-color: #ffffff;
    transition: background 0.2s;
}
.faq-module__question:hover {
    background-color: #f8fafc;
}
.faq-module__icon {
    font-size: 18px;
    color: #0047AB;
    transition: transform 0.3s ease;
}
.faq-module__item.active .faq-module__icon {
    transform: rotate(180deg);
}
.faq-module__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.2s ease;
    background-color: #ffffff;
    border-top: 0px solid #e2e8f0;
    padding: 0 18px;
}
.faq-module__item.active .faq-module__answer {
    max-height: 300px;
    padding: 0 18px 16px 18px;
    border-top: 1px solid #eef2f8;
}
.faq-module__answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}
/* تنسيق الروابط: بدون خط سفلي افتراضيًا، يظهر عند التمرير */
.faq-module__link {
    color: #0047AB;
    text-decoration: none;
    font-weight: 600;
    transition: text-decoration 0.2s;
}
.faq-module__link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (max-width: 640px) {
    .faq-module__container {
        padding: 20px 16px;
    }
    .faq-module__title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .faq-module__question {
        padding: 12px 14px;
        font-size: 15px;
    }
    .faq-module__answer p {
        font-size: 13px;
    }
    .faq-module__icon {
        font-size: 16px;
    }
    .faq-module__item.active .faq-module__answer {
        padding: 0 14px 14px 14px;
    }
    .faq-module__link {
        font-size: 13px;
    }
}
