/* تعریف فونت محلی یکان بخ */
@font-face {
    font-family: 'Yekan Bakh';
    src: url('../fonts/Yekan-Bakh-EN-03-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* اعمال فونت و استایل‌های درخواستی */
.ads-questions-wrapper {
    font-family: 'Yekan Bakh', Tahoma, sans-serif; /* استفاده از فونت یکان بخ */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 40px;
    margin-bottom: 30px;
    background: linear-gradient(145deg, #ffffff, #f7f7f7); /* گرادیانت سفید به طوسی */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ads-questions-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #efefef;
}

.ads-questions-wrapper ul {
    list-style-type: none;
    padding-right: 0; /* تغییر از padding-left به padding-right برای زبان فارسی */
    margin: 0;
}

.ads-questions-wrapper ul li {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px dashed #eaeaea;
}

.ads-questions-wrapper ul li:last-child {
    border-bottom: none;
}

.ads-questions-wrapper ul li::before {
    content: '❓';
    margin-left: 8px;
    font-size: 14px;
    vertical-align: middle;
}