 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
        }

        :root {
            --primary-color: #2a4359; /* آبی تیره/سرمه‌ای برای متن، دکمه و عنوان */
            --white-color: #ffffff;
        }

        body {
       
            background-color: #f4f4f4; 
        }

        .two-column-layout {
            display: flex; 
           max-width: 1200px; 
            margin: 0 auto;
            padding: 0;
            position: relative; 
            overflow: hidden; 
            min-height: 500px; 
        }

        .column {
            box-sizing: border-box;
        }
        
        .column-image {
            flex-basis: 60%; 
            position: relative; 
            min-height: inherit; 
            padding: 30px; /* ⬅️ پدینگ برای جدا نگه داشتن عکس از لبه‌های ستون */
            overflow: hidden; /* ⬅️ مهم: برای جلوگیری از سرریز شدن عکس */
        }

        /* تنظیمات تصویر - بهینه‌سازی شده برای عدم سرریز */
        .column-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* ⬅️ عکس کادر را پر می‌کند و برش می‌خورد */
            display: block;
            z-index: 1; 
            border-radius: 16px; /* گوشه‌های گرد */
            /* ⬅️ position: absolute و top/left/right/bottom حذف شدند */
        }
        
        /* ستون محتوا (40 درصد) - سمت راست */
        .column-content {
            flex-basis: 40%; 
            margin-left: -100px; 
            padding-right: 120px; 
            padding-top: 50px; 
            padding-bottom: 50px; 
            display: flex;
            align-items: center;
            z-index: 10; 
        }
        
        /* 4. تنظیمات باکس متنی */
        .text-box {
            background-color: var(--white-color); 
            padding:15px;
            border-radius: 10px;
            width: 100%;
        }

        .text-box h3 {
            color: var(--primary-color); 
            margin-top: 0;
            font-size: 24px;
        }

        .text-box p {
            color: var(--primary-color); /* ⬅️ رنگ سرمه‌ای برای پاراگراف‌ها */
            line-height: 1.8;
            margin-bottom: 25px; 
        }
        
        /* کانتینر برای دکمه‌ها درون باکس متنی */
        .action-buttons-in-box {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        /* دکمه اصلی */
        .button {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary-color); 
            color: var(--white-color);
            text-decoration: none;
            border-radius: 6px;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        
        /* دکمه ثانویه (خدمات ما) */
        .button.secondary {
            background-color: transparent; 
            color: var(--primary-color); 
            border: 1px solid var(--primary-color); 
        }

        .button:hover {
            background-color: #3b5f7c; 
        }

        /* 5. ریسپانسیو */
        @media (max-width: 768px) {
            .two-column-layout {
                flex-direction: column; 
                min-height: auto;
            }

            .column-image {
                flex-basis: 100%; 
                height: 300px; 
                padding: 20px; /* کاهش پدینگ برای موبایل */
            }

            .column-image img {
                /* در موبایل نیازی به position:static نیست */
                border-radius: 16px; /* حفظ رادیوس */
            }
            
            .column-content {
                flex-basis: 100%; 
                margin-left: 0; 
                padding: 30px; 
                padding-right: 30px;
                margin-top: -100px; 
            }
            
            .action-buttons-in-box {
                justify-content: center; 
                flex-wrap: wrap;
            }
        }
		      /* ------------------------------------- */
        /* استایل‌دهی طرح عمودی نهایی */
        /* ------------------------------------- */

        .intro-vertical-layout {
            display: flex;
            flex-direction: column; 
            width: 100%;
            max-width: 1200px; /* ⬅️ تغییر به عرض محتوایی 1200 پیکسل */
            margin: 50px auto;
            overflow: hidden; 
        }

        /* 1. بخش تصویر (بالا) */
        .intro-image-top {
            width: 100%;
            height: 480px; /* افزایش ارتفاع برای عرض بیشتر */
            position: relative;
            z-index: 1; 
            overflow: hidden;
            padding: 20px; 
        }

        .intro-image-top img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            display: block;
            border-radius: 16px; 
        }

        /* 2. بخش محتوا (پایین) */
        .intro-content-bottom {
            /* ⬅️ عرض کادر متن (80% از 1200px) */
            width: 80%; 
            margin: -100px auto 0 auto; 
            
            padding: 30px;
            text-align: center;
            background-color: var(--primary-color); 
            color: var(--white-color);
            
            z-index: 10; 
            position: relative;
            border-radius: 16px; 
        }

        .intro-content-bottom h2 {
            font-size: 28px; /* افزایش سایز عنوان برای عرض بزرگتر */
            margin-bottom: 15px;
            color: var(--white-color); 
        }

        .intro-content-bottom p {
            font-size: 18px; /* افزایش سایز متن برای عرض بزرگتر */
            max-width: 900px;
            margin: 0 auto 20px auto; 
            line-height: 1.6;
            color: var(--white-color);
        }

        /* استایل دکمه فراخوان عمل (CTA) */
        .intro-content-bottom .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--white-color); 
            color: var(--primary-color); 
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: background-color 0.3s;
        }

        .intro-content-bottom .cta-button:hover {
            background-color: #f0f0f0;
        }
        
        /* ریسپانسیو برای موبایل */
        @media (max-width: 600px) {
            .intro-vertical-layout {
                margin: 20px auto;
            }
            .intro-image-top {
                height: 250px;
                padding: 10px;
            }
            .intro-content-bottom {
                width: 90%; 
                margin: -50px auto 0 auto; 
                padding: 20px;
            }
            .intro-content-bottom h2 {
                font-size: 22px;
            }
            .text-box {
 margin-top:120px;
}
        }
		
    /* ------------------------------------- */
    /* استایل‌دهی طرح افقی جدید (متن سمت راست، تصویر سمت چپ برای تنوع) */
    /* ------------------------------------- */

    .about-horizontal-layout {
        display: flex;
        flex-direction: row-reverse; /* ⬅️ برای RTL: متن سمت راست، تصویر سمت چپ */
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        gap: 40px; /* فاصله بین متن و تصویر */
        align-items: center;
        overflow: hidden;
        position: relative; /* برای مدیریت z-index */
    }

    /* 1. بخش تصویر (سمت چپ در RTL) */
    .about-image-left {
        flex: 1;
        height: 400px;
        position: relative;
        z-index: 1; /* ⬅️ z-index پایین‌تر برای قرارگیری زیر باکس */
        overflow: hidden;
        border-radius: 16px;
    }

    .about-image-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 2. بخش محتوا (سمت راست در RTL) */
    .about-content-right {
        flex: 1;
        padding: 30px;
        background-color: var(--primary-color);
        color: var(--white-color);
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ⬅️ سایه ملایم برای عمق */
        position: relative;
        z-index: 2; /* ⬅️ z-index بالاتر برای قرارگیری روی تصویر */
        margin-left: -60px; /* ⬅️ همپوشانی با تصویر (مقدار را بر اساس نیاز تنظیم کنید) */
    }

    .about-content-right .experience-badge {
        display: inline-block;
        background-color: var(--white-color);
        color: var(--primary-color);
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about-content-right h2 {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--white-color);
    }

    .about-content-right p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 15px;
        color: var(--white-color);
    }

    /* استایل دکمه فراخوان عمل (CTA) - اختیاری، بر اساس متن اصلی */
    .about-content-right .cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--white-color);
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: background-color 0.3s;
        margin-top: 20px;
    }

    .about-content-right .cta-button:hover {
        background-color: #f0f0f0;
    }
    
    /* ریسپانسیو برای موبایل: تبدیل به عمودی و حذف همپوشانی */
    @media (max-width: 600px) {
        .about-horizontal-layout {
            flex-direction: column-reverse; /* ⬅️ تصویر بالا، متن پایین در موبایل */
            margin:65px auto;
            gap: 20px;
        }
        
        .about-image-left {
            height: 250px;
            width: 100%;
            margin-left: 0; /* ⬅️ حذف همپوشانی در موبایل */
        }
        
        .about-content-right {
            width: 100%;
            padding: 20px;
            margin-left: 0; /* ⬅️ حذف همپوشانی در موبایل */
        }
        
        .about-content-right h2 {
            font-size: 22px;
        }
        
        .about-content-right p {
            font-size: 14px;
        }
    }
	 
    /* ------------------------------------- */
    /* استایل‌دهی طرح دو ستونه برای اطلاعات تماس (کارت‌های جداگانه برای هر دفتر) */
    /* ------------------------------------- */

    .contact-dual-column-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        gap: 30px;
        overflow: hidden;
    }

    /* هدر اصلی */
    .contact-header {
        text-align: center;
        background-color: var(--primary-color);
        color: var(--white-color); /* ⬅️ رنگ متن سفید برای دید بهتر */
        padding: 40px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .contact-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
        color: var(--white-color); /* ⬅️ تأکید بر رنگ سفید برای عنوان */
    }

    .contact-header p {
        font-size: 16px;
        color: var(--white-color); /* ⬅️ تأکید بر رنگ سفید برای متن توضیحی */
        opacity: 1; /* ⬅️ حذف opacity برای دید کامل */
    }

    /* بخش کارت‌های دفاتر */
    .contact-offices {
        display: flex;
        gap: 30px;
        justify-content: center;
    }

    .office-card {
        flex: 1;
        max-width: 400px;
        padding: 30px;
        background-color: var(--white-color);
        color: var(--primary-color);
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .office-card:hover {
        transform: translateY(-5px);
    }

    .office-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .office-card p {
        font-size: 16px;
        margin-bottom: 20px;
        color: #666;
    }

    .office-card .phone-link {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--primary-color);
        color: var(--white-color);
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: background-color 0.3s;
    }

    .office-card .phone-link:hover {
        background-color: #1e2f42;
    }
    
    /* ریسپانسیو برای موبایل: کارت‌ها عمودی */
    @media (max-width: 600px) {
        .contact-dual-column-layout {
            margin: 20px auto;
            gap: 20px;
        }
        
        .contact-header {
            padding: 30px 15px;
        }
        
        .contact-header h2 {
            font-size: 24px;
        }
        
        .contact-offices {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .office-card {
            max-width: 100%;
            padding: 20px;
        }
        
        .office-card h3 {
            font-size: 20px;
        }
    }
	    /* ------------------------------------- */
    /* استایل‌دهی طرح FAQ با عنصر details/summary (بدون جاوااسکریپت) */
    /* ------------------------------------- */

    .faq-layout {
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        overflow: hidden;
    }

    .faq-header {
        text-align: center;
        background-color: var(--primary-color);
        color: var(--white-color); /* ⬅️ رنگ متن سفید برای هدر */
        padding: 40px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .faq-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
        color: var(--white-color); /* ⬅️ تأکید بر رنگ سفید برای عنوان */
    }

    .faq-header p {
        font-size: 16px;
        color: var(--white-color); /* ⬅️ تأکید بر رنگ سفید برای متن توضیحی */
        opacity: 1; /* ⬅️ دید کامل بدون کاهش شفافیت */
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-item {
        background-color: var(--white-color);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .faq-item details {
        transition: box-shadow 0.3s ease;
    }

    .faq-item details:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .faq-question {
        padding: 20px 30px;
        background-color: var(--primary-color);
        color: var(--white-color);
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        list-style: none; /* حذف نقطه پیش‌فرض */
    }

    .faq-question summary {
        outline: none; /* حذف حاشیه پیش‌فرض */
        list-style: none;
    }

    .faq-question::-webkit-details-marker {
        display: none; /* پنهان کردن فلش پیش‌فرض در وب‌کیت */
    }

    .faq-question::after {
        content: '+';
        float: right; /* ⬅️ تغییر به سمت راست برای RTL */
        font-size: 24px;
        transition: transform 0.3s;
        margin-left: 10px; /* ⬅️ فاصله از متن در سمت راست */
    }

    .faq-item details[open] .faq-question::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        background-color: #f8f9fa;
        max-height: none; /* بدون محدودیت ارتفاع */
    }

    .faq-answer p {
        padding: 20px 30px;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin: 0;
    }
    
    /* ریسپانسیو برای موبایل */
    @media (max-width: 600px) {
        .faq-layout {
            margin: 20px auto;
        }
        
        .faq-header {
            padding: 30px 15px;
        }
        
        .faq-header h2 {
            font-size: 24px;
        }
        
        .faq-question {
            padding: 15px 20px;
            font-size: 16px;
        }
        
        .faq-question::after {
            font-size: 20px;
        }
        
        .faq-answer p {
            padding: 15px 20px;
            font-size: 14px;
        }
    }
	
    /* ------------------------------------- */
    /* استایل‌دهی طرح دو ستونه جدید (خدمات سمت راست، مزایا سمت چپ در RTL) */
    /* ------------------------------------- */

    .services-advantages-layout {
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        overflow: hidden;
    }

    .services-header {
        text-align: center;
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 40px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
        color: var(--white-color);
    }

    .services-header p {
        font-size: 16px;
        color: var(--white-color);
        opacity: 0.9;
    }

    /* بخش اصلی دو ستونه */
    .main-content {
        display: flex;
        flex-direction: row-reverse; /* ⬅️ برای RTL: خدمات سمت راست، مزایا سمت چپ */
        gap: 40px;
        margin-bottom: 40px;
    }

    /* ستون خدمات (سمت راست در RTL) */
    .services-column {
        flex: 1;
        background-color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .services-column h3 {
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .services-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .service-item {
        padding: 15px;
        background-color: #f8f9fa;
        border-radius: 8px;
        border-right: 4px solid var(--primary-color); /* ⬅️ حاشیه سمت راست برای RTL */
        transition: background-color 0.3s;
    }

    .service-item:hover {
        background-color: #e9ecef;
    }

    .service-item::before {
        content: "•";
        color: var(--primary-color);
        font-weight: bold;
        font-size: 20px;
        margin-left: 10px; /* ⬅️ فاصله در RTL */
    }

    /* ستون مزایا (سمت چپ در RTL) */
    .advantages-column {
        flex: 1;
        background-color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .advantages-column h3 {
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .advantages-description {
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 20px;
    }

    .advantages-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .advantage-item {
        padding: 15px;list-style: none;
        background-color: #f8f9fa;
        border-radius: 8px;
        border-right: 4px solid var(--primary-color); /* ⬅️ حاشیه سمت چپ برای RTL */
        transition: background-color 0.3s;
    }

    .advantage-item:hover {
        background-color: #e9ecef;
    }

    .advantage-item::before {
        content: "✓";
        color: var(--primary-color);
        font-weight: bold;
        font-size: 18px;
        margin-left: 10px; /* ⬅️ فاصله در RTL */
    }

    /* بخش توضیح کلی خدمات */
    .services-overview {
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 40px;
    }

    .services-overview p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    /* بخش تماس */
    .contact-section {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        background-color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .phone-link {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--primary-color);
        color: var(--white-color);
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        font-size: 16px;
        transition: background-color 0.3s;
        white-space: nowrap;
    }

    .phone-link:hover {
        background-color: #1e2f42;
    }
    
    /* ریسپانسیو برای موبایل: تبدیل به عمودی */
    @media (max-width: 600px) {
        .services-advantages-layout {
            margin: 20px auto;
        }
        
        .services-header {
            padding: 30px 15px;
        }
        
        .services-header h2 {
            font-size: 24px;
        }
        
        .main-content {
            flex-direction: column-reverse; /* ⬅️ مزایا بالا، خدمات پایین در موبایل */
            gap: 20px;
        }
        
        .services-column,
        .advantages-column {
            padding: 20px;
        }
        
        .services-column h3,
        .advantages-column h3 {
            font-size: 20px;
        }
        
        .services-overview {
            padding: 20px;
        }
        
        .services-overview p {
            font-size: 14px;
        }
        
        .contact-section {
            padding: 20px;
            flex-direction: column;
            align-items: center;
        }
        
        .phone-link {
            width: 100%;
            text-align: center;
        }
    }
	
    /* ------------------------------------- */
    /* استایل‌دهی طرح سه ستونه برای خدمات */
    /* ------------------------------------- */

    .three-columns-layout {
        display: flex;
        flex-direction: row-reverse; /* ⬅️ برای RTL: ستون‌ها از راست به چپ */
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        gap: 20px;
        overflow: hidden;
    }

    .column {
        flex: 1;
        padding: 30px 20px;
        border-radius: 16px;
       
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 500px; /* ارتفاع یکسان برای ستون‌ها */
        transition: transform 0.3s ease;
    }

    .column:hover {
        transform: translateY(-5px);
    }

    /* رنگ‌های ستون‌ها */
    .column-first {
        background-color: #f8f5f1;
        color: #333;
    }

    .column-second {
        background-color: #ddccb8;
        color: #333;
    }

    .column-third {
        background-color: #283444;
        color: var(--white-color); /* ⬅️ متن سفید برای ستون سوم */
    }

    .column-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        display: block;
        border-radius: 50%;
        object-fit: contain;
    }

    .column h3 {
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .column-first h3 {
        color: #333;
    }

    .column-second h3 {
        color: #333;
    }

    .column-third h3 {
        color: var(--white-color);
    }

    .column ul {
        list-style-type: none; /* حذف بولت پیش‌فرض */
        padding: 0;
        margin: 0;
        text-align: right; /* ⬅️ تراز راست برای متن فارسی */
    }

    .column li {
        position: relative;
        padding-right: 20px; /* ⬅️ فاصله برای بولت سفارشی */
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.6;
    }

    .column li::before {
        content: "•"; /* بولت سفارشی */
        position: absolute;
        right: 0;
        color: #333;
        font-weight: bold;
        font-size: 18px;
    }

    .column-third li {
        color: var(--white-color);
    }

    .column-third li::before {
        color: var(--white-color);
    }

    .column-third li::before {
        content: "•";
    }
    
    /* ریسپانسیو برای موبایل: تبدیل به عمودی */
    @media (max-width: 768px) {
        .three-columns-layout {
            flex-direction: column;
            margin: 20px auto;
            gap: 20px;
        }
        
        .column {
            min-height: auto;
            padding: 20px 0px;
        }
        
        .column h3 {
            font-size: 20px;
        }
        
        .column li {
            font-size: 14px;
            padding-right: 15px;
        }
        
        .column-icon {
            width: 60px;
            height: 60px;
        }
    }
	   

    /* ------------------------------------- */
    /* استایل‌دهی طرح کارت‌های عمودی برای بخش‌های محتوایی */
    /* ------------------------------------- */

    .content-cards-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        gap: 30px;
        overflow: hidden;
    }

    .main-header {
        text-align: center;
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 40px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .main-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
        color: var(--white-color);
    }

    .main-header p {
        font-size: 18px;
        color: var(--white-color);
        opacity: 0.9;
    }

    .content-card {
        background-color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        margin-bottom: 20px;
    }

    .content-card:hover {
        transform: translateY(-3px);
    }

    .content-card h2 {
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .content-card h3 {
        font-size: 20px;
        color: var(--primary-color);
        margin: 20px 0 10px 0;
        font-weight: bold;
    }

    .content-card p {
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 15px;
    }

    .content-card ul {
        list-style-type: none;
        padding: 0;
        margin: 15px 0;
    }

    .content-card li {
        position: relative;
        padding-right: 20px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }

    .content-card li::before {
        content: "•";
        position: absolute;
        right: 0;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 18px;
    }

    .highlight-section {
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }

    .highlight-section h3 {
        color: var(--white-color);
        border-bottom: 2px solid var(--white-color);
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .highlight-section ul li::before {
        color: var(--white-color);
    }

    .highlight-section p {
        color: var(--white-color);
        opacity: 0.95;
    }

    /* استایل خاص برای کارت شرکت حسابداری با تصویر */
    .accounting-company-card {
        display: flex;
        flex-direction: row-reverse; /* ⬅️ برای RTL: تصویر سمت چپ، متن سمت راست */
        gap: 30px;
        align-items: flex-start;
        padding: 30px;
    }

    .accounting-company-image {
        flex: 0 0 250px; /* ⬅️ کاهش عرض برای متناسب بودن */
        height: auto;
        max-height: 200px; /* ⬅️ محدودیت ارتفاع برای تناسب */
        object-fit: cover; /* ⬅️ حفظ نسبت تصویر */
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .accounting-company-text {
        flex: 1;
    }
    
    /* ریسپانسیو برای موبایل */
    @media (max-width: 600px) {
        .content-cards-layout {
            margin: 20px auto;
            gap: 20px;
        }
        
        .main-header {
            padding: 30px 15px;
        }
        
        .main-header h1 {
            font-size: 26px;
        }
        
        .content-card {
            padding: 20px;
        }
        
        .content-card h2 {
            font-size: 20px;
        }
        
        .content-card h3 {
            font-size: 18px;
        }
        
        .content-card p,
        .content-card li {
            font-size: 14px;
        }
        
        .highlight-section {
            padding: 20px;
        }

        .accounting-company-card {
            flex-direction: column; /* ⬅️ تصویر بالا، متن پایین در موبایل */
            gap: 20px;
            text-align: center;
        }

        .accounting-company-image {
            flex: none;
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
            max-height: 150px; /* ⬅️ تنظیم ارتفاع برای موبایل */
        }
    }
	
    /* ⬅️ متغیرهای رنگی */
    :root {
        --primary-color: #2a4359; 
        --white-color: #ffffff;
        --column-bg: #f8f5f1;
    }

    
    /* ------------------------------------- */
    /* استایل‌دهی طرح کامل برای انواع خدمات حسابداری (بهبود مقدمه با عناصر بصری) */
    /* ------------------------------------- */

    .full-services-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1200px;
        margin: 50px auto;
        gap: 30px;
        overflow: hidden;
    }

    .intro-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1e2f42 100%);
        color: var(--white-color);
        padding: 50px 30px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .intro-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--white-color), transparent);
    }

    .intro-section h1 {
        font-size: 32px;
        margin-bottom: 20px;
        color: var(--white-color);
        font-weight: bold;
        position: relative;
        z-index: 2;
    }

    .intro-section p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--white-color);
        opacity: 0.95;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* بخش 4 ستونه خدمات */
    .four-columns-layout {
        display: flex;
        flex-direction: row-reverse; /* ⬅️ برای RTL: ستون‌ها از راست به چپ */
        gap: 20px;
        overflow: hidden;
    }

    .services-column {
        flex: 1;
        background-color: var(--column-bg);
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        min-height: 400px;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .services-column:hover {
        transform: translateY(-3px);
    }

    .services-column h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-weight: bold;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .services-column ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: right;
        flex-grow: 1;
    }

    .services-column li {
        position: relative;
        padding-right: 20px;
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }

  

    /* بخش بهترین شرکت حسابداری */
    .best-company-section {
        background-color: var(--white-color);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .best-company-section h2 {
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .best-company-section p {
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 20px;
    }

    .best-company-section ul {
        list-style-type: none;
        padding: 0;
        margin: 20px 0;
    }

    .best-company-section li {
        position: relative;
        padding-right: 20px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }

    .best-company-section li::before {
        content: "•";
        position: absolute;
        right: 0;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 18px;
    }

    .highlight-saman {
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 25px;
        border-radius: 12px;
        margin-top: 30px;
        text-align: center;
    }

    .highlight-saman p {
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        color: var(--white-color);
    }
    
    /* ریسپانسیو برای موبایل */
    @media (max-width: 600px) {
        .full-services-layout {
            margin: 20px auto;
            gap: 20px;
        }
        
        .intro-section {
            padding: 30px 15px;
        }
        
        .intro-section h1 {
            font-size: 24px;
        }
        
        .four-columns-layout {
            flex-direction: column;
            gap: 20px;
        }
        
        .services-column {
            min-height: auto;
            padding: 20px;
        }
        
        .services-column h3 {
            font-size: 20px;
        }
        
        .services-column li {
            font-size: 14px;
            padding-right: 15px;
        }
        
        .best-company-section {
            padding: 20px;
        }
        
        .best-company-section h2 {
            font-size: 22px;
        }
        
        .best-company-section p,
        .best-company-section li {
            font-size: 14px;
        }
        
        .highlight-saman {
            padding: 20px;
        }
    }