 .article-header img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 2rem;
            padding-top: 2rem;
        }
        .article-body {
            line-height: 1.8;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
            font-family: 'Vazirmatn', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 2rem;
            color: #333;
        }

        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 2rem;
        }

        /* کانتینر اصلی با Flexbox برای چیدمان */
        .ravina-guide-container {
            display: flex;
            flex-direction: row-reverse; /* منو سمت راست قرار می‌گیرد */
            width: 100%;
            max-width: 1200px;
            margin: auto;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            background-color: #fff;
            min-height: 80vh;
        }

        /* ستون منوی تب‌ها در سمت راست */
        .tabs-nav {
            flex: 0 0 250px; /* عرض ثابت برای منو */
            background-color: #f5f7fa;
            border-left: 1px solid #e0e0e0;
            padding: 10px 0;
            overflow-y: auto;
        }

        .tabs-nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }
        
        .tabs-nav .tab-link {
            display: block;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            cursor: pointer;
            border-right: 4px solid transparent; /* نوار رنگی برای تب فعال */
            transition: all 0.2s ease-in-out;
        }

        .tabs-nav .tab-link:hover {
            background-color: #e9eef5;
        }

        /* استایل تب فعال (active) */
        .tabs-nav .tab-link.active {
            background-color: #ffffff;
            color: #007bff;
            font-weight: 700;
            border-right-color: #007bff;
        }

        /* بخش محتوا در سمت چپ */
        .content-area {
            flex: 1; /* باقی فضای موجود را اشغال می‌کند */
            padding: 25px 35px;
            line-height: 1.8;
            overflow-y: auto;
        }

        .content-panel {
            display: none; /* همه پنل‌های محتوا به صورت پیش‌فرض مخفی هستند */
        }
        
        /* نمایش پنل فعال */
        .content-panel.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        .content-panel h2 {
            color: #0056b3;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
            margin-top: 0;
        }
        
        .content-panel h3 {
             margin-top: 30px;
             color: #343a40;
             border-bottom: 1px solid #eee;
             padding-bottom: 5px;
        }

        .content-panel code {
            background-color: #e9ecef;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.9em;
            color: #c7254e;
        }

        .content-panel ul {
            padding-right: 20px;
        }
        
        /* انیمیشن محو شدن و ظاهر شدن */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }