.elementor-2277 .elementor-element.elementor-element-8c973b3{--display:flex;}/* Start custom CSS *//* استایل کلی */
.article-container {
    font-family: inherit; /* فونت از قالب والد ارث می‌برد */
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* منوی طبقه‌بندی و انکر */
.anchor-nav {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border-right: 5px solid #4a90e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menu-title {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    text-align: right;
}

.anchor-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.anchor-menu li {
    margin-bottom: 8px;
}

.anchor-menu a {
    display: block;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: right;
    font-size: 0.95em;
}

.anchor-menu a:hover {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
    transform: translateX(-5px);
}

/* محتوای اصلی */
.main-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.main-content section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #eee;
}

.main-content section:last-of-type {
    border-bottom: none;
}

/* تیترها - بدون تغییر سایز */
.main-content h2 {
    color: #2c3e50;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    text-align: right;
}

.main-content h3 {
    color: #34495e;
    margin: 20px 0 15px 0;
    text-align: right;
}

/* پاراگراف و لیست */
.main-content p {
    text-align: justify;
    margin-bottom: 15px;
}

.main-content ul {
    text-align: right;
    padding-right: 20px;
    margin-bottom: 20px;
}

.main-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* باکس‌های رنگی */
.box {
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-right: 5px solid;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.box-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.info-box {
    background-color: #e8f4fd;
    border-color: #4a90e2;
    color: #2c3e50;
}

.success-box {
    background-color: #f0f9f0;
    border-color: #27ae60;
    color: #2c3e50;
}

.warning-box {
    background-color: #fef9e7;
    border-color: #f39c12;
    color: #2c3e50;
}

/* جدول */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    text-align: right;
}

table thead {
    background-color: #4a90e2;
    color: white;
}

table th, table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
}

table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

table tbody tr:hover {
    background-color: #e8f4fd;
}

/* بخش سوالات متداول */
.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-right: 4px solid #9b59b6;
}

.faq-item h3 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 1.1em;
}

/* لینک‌ها */
a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
    .anchor-menu {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .article-container {
        padding: 15px;
    }
    
    .box {
        flex-direction: column;
        gap: 10px;
    }
}/* End custom CSS */