.elementor-5465 .elementor-element.elementor-element-29ab667{--display:flex;overflow:visible;}/* Start custom CSS for text-editor, class: .elementor-element-501df39 *//* --- حاوية الأسئلة الشائعة (FAQ Container) --- */
.faq-section-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

/* العنوان الرئيسي للقسم */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 30px;
    font-weight: 900;
    color: #002E6D; /* اللون الأزرق الرسمي للملعب */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.faq-header p {
    color: #64748b;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- تصميم الأكورديون (Accordion Design) --- */
.faq-item {
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-summary {
    padding: 24px 20px;
    cursor: pointer;
    font-weight: 800;
    color: #1e293b;
    font-size: 17px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-summary:hover {
    background: #f8fafc;
    color: #002E6D;
}

/* إزالة سهم المتصفح الافتراضي */
.faq-summary::-webkit-details-marker {
    display: none;
}

/* أيقونة السهم المخصصة */
.faq-icon {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f1f5f9;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

details[open] .faq-icon {
    transform: rotate(180deg);
    background: #002E6D;
    color: #ffffff;
}

/* المحتوى الداخلي (Answer Content) */
.faq-content {
    padding: 0 20px 30px 20px;
    color: #475569;
    line-height: 1.8;
    font-size: 15.5px;
    animation: slideDown 0.4s ease-out;
}

.faq-content strong {
    color: #002E6D;
    font-weight: 800;
}

/* تحسين الروابط (DoFollow Links) */
.faq-link {
    color: #002E6D;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid #fbbf24; /* خط أصفر للتمييز */
    padding-bottom: 1px;
    transition: all 0.2s;
}

.faq-link:hover {
    background: #fffbeb;
    color: #b45309;
}

/* أنيميشن الفتح */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- توافق الجوال (Mobile) --- */
@media (max-width: 768px) {
    .faq-section-container {
        padding: 25px 15px;
    }
    
    .faq-header h2 {
        font-size: 24px;
    }
    
    .faq-summary {
        font-size: 15px;
        padding: 20px 10px;
    }
    
    .faq-content {
        font-size: 14.5px;
        padding: 0 10px 20px 10px;
    }
}/* End custom CSS */