.testeto-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    direction: rtl !important;
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
}

.t-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.t-faq-item:hover {
    border-color: #FFC107;
    box-shadow: 0 10px 15px -3px rgba(255, 193, 7, 0.15);
}

.t-faq-item.active {
    border: 2px solid #FFC107;
    box-shadow: 0 10px 25px -5px rgba(255, 193, 7, 0.25);
}

.t-faq-header {
    padding: 24px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* این کلاس جلوی باگ زیر هم افتادن علامت سوال رو می‌گیره */
.t-faq-title-wrapper {
    display: flex !important;
    flex-direction: row !important; /* فورس کردن توی یک خط */
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    flex: 1 !important; /* هل دادن فلش به سمت چپ */
    min-width: 0 !important;
}

.t-faq-q-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.t-faq-q-icon svg,
.t-faq-icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    display: block !important;
}

/* عرض 100 درصد به متن دادم تا دکمه‌های راست/وسط/چپ المنتور کار کنه */
.t-faq-title {
    margin: 0 !important;
    font-size: 1.15rem;
    font-weight: 800;
    color: #333333;
    line-height: 1.6;
    width: 100% !important; 
}

.t-faq-icon {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    margin-right: 15px !important;
}

.t-faq-icon svg {
    stroke: #4B5563;
    transition: all 0.3s ease;
}

.t-faq-item.active .t-faq-icon {
    background: #FFC107;
    transform: rotate(180deg);
}

.t-faq-item.active .t-faq-icon svg {
    stroke: #ffffff;
}

.t-faq-body {
    display: none;
}

.t-faq-content {
    padding: 0 24px 24px 24px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.8;
    font-weight: 500;
}