/* Modern FAQ Accordion (Farsi) */

.mfa-faq-wrapper {
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.mfa-faq-item {
    direction: rtl;
    background: linear-gradient(135deg, #e6f2ff, #f7fbff);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 35, 60, 0.12);
    overflow: hidden;
    border: 1px solid rgba(29, 78, 216, 0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mfa-faq-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 35, 60, 0.18);
    border-color: rgba(29, 78, 216, 0.22);
}

.mfa-faq-question {
    direction: rtl;
    width: 100%;
    border: none;
    background: transparent;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.98rem;
    line-height: 1.8;
    font-weight: 600;
    color: #0f172a;
}

.mfa-faq-question-text {
    flex: 1;
    text-align: right;
}

.mfa-faq-question strong,
.mfa-faq-question b {
    color: #1d4ed8;
    font-weight: 700;
}

.mfa-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 4px 11px rgba(37, 99, 235, 0.25);
    position: relative;
}

.mfa-faq-icon::before,
.mfa-faq-icon::after {
    content: "";
    position: absolute;
    background-color: #1d4ed8;
    border-radius: 999px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.mfa-faq-icon::before {
    width: 12px;
    height: 2px;
}

.mfa-faq-icon::after {
    width: 2px;
    height: 12px;
}

.mfa-faq-question[aria-expanded="true"] .mfa-faq-icon::after {
    transform: scaleY(0);
    opacity: 0;
}

.mfa-faq-answer {
    direction: rtl;
    padding: 0 1.25rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #1e293b;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background: #ffffff;
}

.mfa-faq-answer strong,
.mfa-faq-answer b {
    color: #0f172a;
    font-weight: 600;
}

.mfa-faq-answer p {
    margin: 0.5rem 0 0;
}

.mfa-faq-answer[hidden] {
    display: none !important;
}

@media (max-width: 640px) {
    .mfa-faq-question {
        padding: 0.9rem 0.95rem;
        font-size: 0.95rem;
    }

    .mfa-faq-answer {
        padding: 0 0.95rem 0.9rem;
        font-size: 0.9rem;
    }
}


/* Prevent theme pseudo-icons (like extra +) from appearing on FAQ elements */
.mfa-faq-wrapper::before,
.mfa-faq-wrapper::after,
.mfa-faq-question::before,
.mfa-faq-question::after,
.mfa-faq-question-text::before,
.mfa-faq-question-text::after {
    content: none !important;
}

/* In themed modes, ensure "سوال 1 / سوال 2" and links follow the question color for readability */
body[class*="mfa-theme-"] .mfa-faq-question a,
body[class*="mfa-theme-"] .mfa-faq-question a:link,
body[class*="mfa-theme-"] .mfa-faq-question a:visited,
body[class*="mfa-theme-"] .mfa-faq-question a:hover,
body[class*="mfa-theme-"] .mfa-faq-question a:active {
    color: inherit !important;
    text-decoration: none;
}

body[class*="mfa-theme-"] .mfa-faq-question strong,
body[class*="mfa-theme-"] .mfa-faq-question b {
    color: inherit !important;
}

/* ====== Modern FAQ Accordion Themes (30 variants) ====== */
/* Theme 1 */
.mfa-theme-1 .mfa-faq-item {
    background: linear-gradient(135deg, #f9fafb, #e5f0ff);
    border-color: #2563eb33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-1 .mfa-faq-question {
    color: #0f172a;
}
.mfa-theme-1 .mfa-faq-answer {
    background-color: #ffffff;
    color: #0f172a;
    border-top-color: #2563eb40;
}
.mfa-theme-1 .mfa-faq-icon {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px #2563eb40;
}
.mfa-theme-1 .mfa-faq-icon::before,
.mfa-theme-1 .mfa-faq-icon::after {
    background-color: #2563eb;
}

/* Theme 2 */
.mfa-theme-2 .mfa-faq-item {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #d9770633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-2 .mfa-faq-question {
    color: #78350f;
}
.mfa-theme-2 .mfa-faq-answer {
    background-color: #fffbeb;
    color: #7c2d12;
    border-top-color: #d9770640;
}
.mfa-theme-2 .mfa-faq-icon {
    background: #ffffff;
    border-color: #d97706;
    box-shadow: 0 4px 12px #d9770640;
}
.mfa-theme-2 .mfa-faq-icon::before,
.mfa-theme-2 .mfa-faq-icon::after {
    background-color: #d97706;
}

/* Theme 3 */
.mfa-theme-3 .mfa-faq-item {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: #dc262633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-3 .mfa-faq-question {
    color: #7f1d1d;
}
.mfa-theme-3 .mfa-faq-answer {
    background-color: #fef2f2;
    color: #7f1d1d;
    border-top-color: #dc262640;
}
.mfa-theme-3 .mfa-faq-icon {
    background: #ffffff;
    border-color: #dc2626;
    box-shadow: 0 4px 12px #dc262640;
}
.mfa-theme-3 .mfa-faq-icon::before,
.mfa-theme-3 .mfa-faq-icon::after {
    background-color: #dc2626;
}

/* Theme 4 */
.mfa-theme-4 .mfa-faq-item {
    background: linear-gradient(135deg, #ecfdf3, #bbf7d0);
    border-color: #16a34a33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-4 .mfa-faq-question {
    color: #064e3b;
}
.mfa-theme-4 .mfa-faq-answer {
    background-color: #f0fdf4;
    color: #064e3b;
    border-top-color: #16a34a40;
}
.mfa-theme-4 .mfa-faq-icon {
    background: #ffffff;
    border-color: #16a34a;
    box-shadow: 0 4px 12px #16a34a40;
}
.mfa-theme-4 .mfa-faq-icon::before,
.mfa-theme-4 .mfa-faq-icon::after {
    background-color: #16a34a;
}

/* Theme 5 */
.mfa-theme-5 .mfa-faq-item {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #1d4ed833;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-5 .mfa-faq-question {
    color: #1e3a8a;
}
.mfa-theme-5 .mfa-faq-answer {
    background-color: #eef2ff;
    color: #1e293b;
    border-top-color: #1d4ed840;
}
.mfa-theme-5 .mfa-faq-icon {
    background: #ffffff;
    border-color: #1d4ed8;
    box-shadow: 0 4px 12px #1d4ed840;
}
.mfa-theme-5 .mfa-faq-icon::before,
.mfa-theme-5 .mfa-faq-icon::after {
    background-color: #1d4ed8;
}

/* Theme 6 */
.mfa-theme-6 .mfa-faq-item {
    background: linear-gradient(135deg, #fdf2ff, #f5d0fe);
    border-color: #a855f733;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-6 .mfa-faq-question {
    color: #4c1d95;
}
.mfa-theme-6 .mfa-faq-answer {
    background-color: #fdf2ff;
    color: #4c1d95;
    border-top-color: #a855f740;
}
.mfa-theme-6 .mfa-faq-icon {
    background: #ffffff;
    border-color: #a855f7;
    box-shadow: 0 4px 12px #a855f740;
}
.mfa-theme-6 .mfa-faq-icon::before,
.mfa-theme-6 .mfa-faq-icon::after {
    background-color: #a855f7;
}

/* Theme 7 */
.mfa-theme-7 .mfa-faq-item {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: #f9731633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-7 .mfa-faq-question {
    color: #7c2d12;
}
.mfa-theme-7 .mfa-faq-answer {
    background-color: #fff7ed;
    color: #7c2d12;
    border-top-color: #f9731640;
}
.mfa-theme-7 .mfa-faq-icon {
    background: #ffffff;
    border-color: #f97316;
    box-shadow: 0 4px 12px #f9731640;
}
.mfa-theme-7 .mfa-faq-icon::before,
.mfa-theme-7 .mfa-faq-icon::after {
    background-color: #f97316;
}

/* Theme 8 */
.mfa-theme-8 .mfa-faq-item {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    border-color: #06b6d433;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-8 .mfa-faq-question {
    color: #0f172a;
}
.mfa-theme-8 .mfa-faq-answer {
    background-color: #f0f9ff;
    color: #0f172a;
    border-top-color: #06b6d440;
}
.mfa-theme-8 .mfa-faq-icon {
    background: #ffffff;
    border-color: #06b6d4;
    box-shadow: 0 4px 12px #06b6d440;
}
.mfa-theme-8 .mfa-faq-icon::before,
.mfa-theme-8 .mfa-faq-icon::after {
    background-color: #06b6d4;
}

/* Theme 9 */
.mfa-theme-9 .mfa-faq-item {
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    border-color: #6b728033;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-9 .mfa-faq-question {
    color: #111827;
}
.mfa-theme-9 .mfa-faq-answer {
    background-color: #f9fafb;
    color: #111827;
    border-top-color: #6b728040;
}
.mfa-theme-9 .mfa-faq-icon {
    background: #ffffff;
    border-color: #6b7280;
    box-shadow: 0 4px 12px #6b728040;
}
.mfa-theme-9 .mfa-faq-icon::before,
.mfa-theme-9 .mfa-faq-icon::after {
    background-color: #6b7280;
}

/* Theme 10 */
.mfa-theme-10 .mfa-faq-item {
    background: linear-gradient(135deg, #111827, #020617);
    border-color: #f9731633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-10 .mfa-faq-question {
    color: #f9fafb;
}
.mfa-theme-10 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #f9731640;
}
.mfa-theme-10 .mfa-faq-icon {
    background: #ffffff;
    border-color: #f97316;
    box-shadow: 0 4px 12px #f9731640;
}
.mfa-theme-10 .mfa-faq-icon::before,
.mfa-theme-10 .mfa-faq-icon::after {
    background-color: #f97316;
}

/* Theme 11 */
.mfa-theme-11 .mfa-faq-item {
    background: linear-gradient(135deg, #0f172a, #020617);
    border-color: #22c55e33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-11 .mfa-faq-question {
    color: #f9fafb;
}
.mfa-theme-11 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #22c55e40;
}
.mfa-theme-11 .mfa-faq-icon {
    background: #ffffff;
    border-color: #22c55e;
    box-shadow: 0 4px 12px #22c55e40;
}
.mfa-theme-11 .mfa-faq-icon::before,
.mfa-theme-11 .mfa-faq-icon::after {
    background-color: #22c55e;
}

/* Theme 12 */
.mfa-theme-12 .mfa-faq-item {
    background: linear-gradient(135deg, #0f172a, #020617);
    border-color: #38bdf833;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-12 .mfa-faq-question {
    color: #f9fafb;
}
.mfa-theme-12 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #38bdf840;
}
.mfa-theme-12 .mfa-faq-icon {
    background: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 4px 12px #38bdf840;
}
.mfa-theme-12 .mfa-faq-icon::before,
.mfa-theme-12 .mfa-faq-icon::after {
    background-color: #38bdf8;
}

/* Theme 13 */
.mfa-theme-13 .mfa-faq-item {
    background: linear-gradient(135deg, #111827, #020617);
    border-color: #e11d4833;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-13 .mfa-faq-question {
    color: #f9fafb;
}
.mfa-theme-13 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #e11d4840;
}
.mfa-theme-13 .mfa-faq-icon {
    background: #ffffff;
    border-color: #e11d48;
    box-shadow: 0 4px 12px #e11d4840;
}
.mfa-theme-13 .mfa-faq-icon::before,
.mfa-theme-13 .mfa-faq-icon::after {
    background-color: #e11d48;
}

/* Theme 14 */
.mfa-theme-14 .mfa-faq-item {
    background: linear-gradient(135deg, #fdf2e9, #fde7c7);
    border-color: #ea580c33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-14 .mfa-faq-question {
    color: #7c2d12;
}
.mfa-theme-14 .mfa-faq-answer {
    background-color: #fff7ed;
    color: #7c2d12;
    border-top-color: #ea580c40;
}
.mfa-theme-14 .mfa-faq-icon {
    background: #ffffff;
    border-color: #ea580c;
    box-shadow: 0 4px 12px #ea580c40;
}
.mfa-theme-14 .mfa-faq-icon::before,
.mfa-theme-14 .mfa-faq-icon::after {
    background-color: #ea580c;
}

/* Theme 15 */
.mfa-theme-15 .mfa-faq-item {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-color: #3b82f633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-15 .mfa-faq-question {
    color: #0f172a;
}
.mfa-theme-15 .mfa-faq-answer {
    background-color: #ffffff;
    color: #0f172a;
    border-top-color: #3b82f640;
}
.mfa-theme-15 .mfa-faq-icon {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px #3b82f640;
}
.mfa-theme-15 .mfa-faq-icon::before,
.mfa-theme-15 .mfa-faq-icon::after {
    background-color: #3b82f6;
}

/* Theme 16 */
.mfa-theme-16 .mfa-faq-item {
    background: linear-gradient(135deg, #ecfdf3, #dcfce7);
    border-color: #15803d33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-16 .mfa-faq-question {
    color: #064e3b;
}
.mfa-theme-16 .mfa-faq-answer {
    background-color: #f0fdf4;
    color: #052e16;
    border-top-color: #15803d40;
}
.mfa-theme-16 .mfa-faq-icon {
    background: #ffffff;
    border-color: #15803d;
    box-shadow: 0 4px 12px #15803d40;
}
.mfa-theme-16 .mfa-faq-icon::before,
.mfa-theme-16 .mfa-faq-icon::after {
    background-color: #15803d;
}

/* Theme 17 */
.mfa-theme-17 .mfa-faq-item {
    background: linear-gradient(135deg, #fdf2ff, #fae8ff);
    border-color: #c026d333;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-17 .mfa-faq-question {
    color: #4a044e;
}
.mfa-theme-17 .mfa-faq-answer {
    background-color: #fdf4ff;
    color: #4a044e;
    border-top-color: #c026d340;
}
.mfa-theme-17 .mfa-faq-icon {
    background: #ffffff;
    border-color: #c026d3;
    box-shadow: 0 4px 12px #c026d340;
}
.mfa-theme-17 .mfa-faq-icon::before,
.mfa-theme-17 .mfa-faq-icon::after {
    background-color: #c026d3;
}

/* Theme 18 */
.mfa-theme-18 .mfa-faq-item {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    border-color: #0369a133;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-18 .mfa-faq-question {
    color: #082f49;
}
.mfa-theme-18 .mfa-faq-answer {
    background-color: #f0f9ff;
    color: #082f49;
    border-top-color: #0369a140;
}
.mfa-theme-18 .mfa-faq-icon {
    background: #ffffff;
    border-color: #0369a1;
    box-shadow: 0 4px 12px #0369a140;
}
.mfa-theme-18 .mfa-faq-icon::before,
.mfa-theme-18 .mfa-faq-icon::after {
    background-color: #0369a1;
}

/* Theme 19 */
.mfa-theme-19 .mfa-faq-item {
    background: linear-gradient(135deg, #fefce8, #fef9c3);
    border-color: #eab30833;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-19 .mfa-faq-question {
    color: #713f12;
}
.mfa-theme-19 .mfa-faq-answer {
    background-color: #fefce8;
    color: #713f12;
    border-top-color: #eab30840;
}
.mfa-theme-19 .mfa-faq-icon {
    background: #ffffff;
    border-color: #eab308;
    box-shadow: 0 4px 12px #eab30840;
}
.mfa-theme-19 .mfa-faq-icon::before,
.mfa-theme-19 .mfa-faq-icon::after {
    background-color: #eab308;
}

/* Theme 20 */
.mfa-theme-20 .mfa-faq-item {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-color: #7c3aed33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-20 .mfa-faq-question {
    color: #312e81;
}
.mfa-theme-20 .mfa-faq-answer {
    background-color: #f5f3ff;
    color: #312e81;
    border-top-color: #7c3aed40;
}
.mfa-theme-20 .mfa-faq-icon {
    background: #ffffff;
    border-color: #7c3aed;
    box-shadow: 0 4px 12px #7c3aed40;
}
.mfa-theme-20 .mfa-faq-icon::before,
.mfa-theme-20 .mfa-faq-icon::after {
    background-color: #7c3aed;
}

/* Theme 21 */
.mfa-theme-21 .mfa-faq-item {
    background: linear-gradient(135deg, #fdf2e9, #fee2e2);
    border-color: #fb923c33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-21 .mfa-faq-question {
    color: #7c2d12;
}
.mfa-theme-21 .mfa-faq-answer {
    background-color: #fffbeb;
    color: #7c2d12;
    border-top-color: #fb923c40;
}
.mfa-theme-21 .mfa-faq-icon {
    background: #ffffff;
    border-color: #fb923c;
    box-shadow: 0 4px 12px #fb923c40;
}
.mfa-theme-21 .mfa-faq-icon::before,
.mfa-theme-21 .mfa-faq-icon::after {
    background-color: #fb923c;
}

/* Theme 22 */
.mfa-theme-22 .mfa-faq-item {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-color: #0284c733;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-22 .mfa-faq-question {
    color: #082f49;
}
.mfa-theme-22 .mfa-faq-answer {
    background-color: #e0f2fe;
    color: #082f49;
    border-top-color: #0284c740;
}
.mfa-theme-22 .mfa-faq-icon {
    background: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 4px 12px #0284c740;
}
.mfa-theme-22 .mfa-faq-icon::before,
.mfa-theme-22 .mfa-faq-icon::after {
    background-color: #0284c7;
}

/* Theme 23 */
.mfa-theme-23 .mfa-faq-item {
    background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
    border-color: #4b556333;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-23 .mfa-faq-question {
    color: #111827;
}
.mfa-theme-23 .mfa-faq-answer {
    background-color: #ffffff;
    color: #111827;
    border-top-color: #4b556340;
}
.mfa-theme-23 .mfa-faq-icon {
    background: #ffffff;
    border-color: #4b5563;
    box-shadow: 0 4px 12px #4b556340;
}
.mfa-theme-23 .mfa-faq-icon::before,
.mfa-theme-23 .mfa-faq-icon::after {
    background-color: #4b5563;
}

/* Theme 24 */
.mfa-theme-24 .mfa-faq-item {
    background: linear-gradient(135deg, #020617, #0f172a);
    border-color: #facc1533;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-24 .mfa-faq-question {
    color: #f9fafb;
}
.mfa-theme-24 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #facc1540;
}
.mfa-theme-24 .mfa-faq-icon {
    background: #ffffff;
    border-color: #facc15;
    box-shadow: 0 4px 12px #facc1540;
}
.mfa-theme-24 .mfa-faq-icon::before,
.mfa-theme-24 .mfa-faq-icon::after {
    background-color: #facc15;
}

/* Theme 25 */
.mfa-theme-25 .mfa-faq-item {
    background: linear-gradient(135deg, #04101f, #020617);
    border-color: #60a5fa33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-25 .mfa-faq-question {
    color: #e5e7eb;
}
.mfa-theme-25 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #60a5fa40;
}
.mfa-theme-25 .mfa-faq-icon {
    background: #ffffff;
    border-color: #60a5fa;
    box-shadow: 0 4px 12px #60a5fa40;
}
.mfa-theme-25 .mfa-faq-icon::before,
.mfa-theme-25 .mfa-faq-icon::after {
    background-color: #60a5fa;
}

/* Theme 26 */
.mfa-theme-26 .mfa-faq-item {
    background: linear-gradient(135deg, #022c22, #064e3b);
    border-color: #34d39933;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-26 .mfa-faq-question {
    color: #ecfdf3;
}
.mfa-theme-26 .mfa-faq-answer {
    background-color: #022c22;
    color: #ecfdf3;
    border-top-color: #34d39940;
}
.mfa-theme-26 .mfa-faq-icon {
    background: #ffffff;
    border-color: #34d399;
    box-shadow: 0 4px 12px #34d39940;
}
.mfa-theme-26 .mfa-faq-icon::before,
.mfa-theme-26 .mfa-faq-icon::after {
    background-color: #34d399;
}

/* Theme 27 */
.mfa-theme-27 .mfa-faq-item {
    background: linear-gradient(135deg, #2f172a, #4c1d95);
    border-color: #f472b633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-27 .mfa-faq-question {
    color: #fdf2ff;
}
.mfa-theme-27 .mfa-faq-answer {
    background-color: #2f172a;
    color: #fdf2ff;
    border-top-color: #f472b640;
}
.mfa-theme-27 .mfa-faq-icon {
    background: #ffffff;
    border-color: #f472b6;
    box-shadow: 0 4px 12px #f472b640;
}
.mfa-theme-27 .mfa-faq-icon::before,
.mfa-theme-27 .mfa-faq-icon::after {
    background-color: #f472b6;
}

/* Theme 28 */
.mfa-theme-28 .mfa-faq-item {
    background: linear-gradient(135deg, #3f0f12, #7c2d12);
    border-color: #fb923c33;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-28 .mfa-faq-question {
    color: #fffbeb;
}
.mfa-theme-28 .mfa-faq-answer {
    background-color: #3f0f12;
    color: #fffbeb;
    border-top-color: #fb923c40;
}
.mfa-theme-28 .mfa-faq-icon {
    background: #ffffff;
    border-color: #fb923c;
    box-shadow: 0 4px 12px #fb923c40;
}
.mfa-theme-28 .mfa-faq-icon::before,
.mfa-theme-28 .mfa-faq-icon::after {
    background-color: #fb923c;
}

/* Theme 29 */
.mfa-theme-29 .mfa-faq-item {
    background: linear-gradient(135deg, #0b1120, #020617);
    border-color: #38bdf833;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-29 .mfa-faq-question {
    color: #e5e7eb;
}
.mfa-theme-29 .mfa-faq-answer {
    background-color: #020617;
    color: #e5e7eb;
    border-top-color: #38bdf840;
}
.mfa-theme-29 .mfa-faq-icon {
    background: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 4px 12px #38bdf840;
}
.mfa-theme-29 .mfa-faq-icon::before,
.mfa-theme-29 .mfa-faq-icon::after {
    background-color: #38bdf8;
}

/* Theme 30 */
.mfa-theme-30 .mfa-faq-item {
    background: linear-gradient(135deg, #0b1120, #020617);
    border-color: #f9731633;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}
.mfa-theme-30 .mfa-faq-question {
    color: #fef3c7;
}
.mfa-theme-30 .mfa-faq-answer {
    background-color: #020617;
    color: #fef3c7;
    border-top-color: #f9731640;
}
.mfa-theme-30 .mfa-faq-icon {
    background: #ffffff;
    border-color: #f97316;
    box-shadow: 0 4px 12px #f9731640;
}
.mfa-theme-30 .mfa-faq-icon::before,
.mfa-theme-30 .mfa-faq-icon::after {
    background-color: #f97316;
}
