
        :root {
            --color-brand-50: #eef2ff;
            --color-brand-100: #e0e7ff;
            --color-brand-200: #c7d2fe;
            --color-brand-300: #a5b4fc;
            --color-brand-400: #818cf8;
            --color-brand-500: #6366f1;
            --color-brand-600: #4f46e5;
            --color-brand-700: #4338ca;
            --color-brand-800: #3730a3;
            --color-brand-900: #312e81;
        }

        [data-theme-color="emerald"] {
            --color-brand-50: #ecfdf5;
            --color-brand-100: #d1fae5;
            --color-brand-200: #a7f3d0;
            --color-brand-300: #6ee7b7;
            --color-brand-400: #34d399;
            --color-brand-500: #10b981;
            --color-brand-600: #059669;
            --color-brand-700: #047857;
            --color-brand-800: #065f46;
            --color-brand-900: #064e3b;
        }

        [data-theme-color="cyan"] {
            --color-brand-50: #ecfeff;
            --color-brand-100: #cffafe;
            --color-brand-200: #a5f3fc;
            --color-brand-300: #67e8f9;
            --color-brand-400: #22d3ee;
            --color-brand-500: #06b6d4;
            --color-brand-600: #0891b2;
            --color-brand-700: #0e7490;
            --color-brand-800: #155e75;
            --color-brand-900: #164e63;
        }

        [data-theme-color="violet"] {
            --color-brand-50: #f5f3ff;
            --color-brand-100: #ede9fe;
            --color-brand-200: #ddd6fe;
            --color-brand-300: #c4b5fd;
            --color-brand-400: #a78bfa;
            --color-brand-500: #8b5cf6;
            --color-brand-600: #7c3aed;
            --color-brand-700: #6d28d9;
            --color-brand-800: #5b21b6;
            --color-brand-900: #4c1d95;
        }

        html[lang="en"] body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; text-align: left; }
        html[lang="fa"] body { font-family: 'Vazirmatn', Tahoma, sans-serif; letter-spacing: -0.015em; text-align: right; line-height: 2.1; }
        html[lang="ku"] body { font-family: 'Noto Kufi Arabic', 'Noto Sans Arabic', 'Rabar', 'Vazirmatn', Tahoma, sans-serif; letter-spacing: -0.01em; word-spacing: 0.04em; text-align: right; line-height: 2.1; }

        /* Professional Brand Logo Typography Style */
        .brand-logo-text {
            font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            letter-spacing: -0.02em;
        }

        html[lang="ku"] #hero-main-title,
        html[lang="fa"] #hero-main-title {
            font-size: 1.65rem;
            line-height: 1.45;
        }
        @media (min-width: 640px) {
            html[lang="ku"] #hero-main-title,
            html[lang="fa"] #hero-main-title {
                font-size: 2.15rem;
                line-height: 1.4;
            }
        }
        @media (min-width: 1024px) {
            html[lang="ku"] #hero-main-title,
            html[lang="fa"] #hero-main-title {
                font-size: 2.5rem;
                line-height: 1.35;
            }
        }

        .grid-bg-dark {
            background-size: 36px 36px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        }
        .grid-bg-light {
            background-size: 36px 36px;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
        }
        .glass-card-dark {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
        }
        .glass-card-light {
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
        }

        /* Accordion Custom Styling for Articles */
        .faq-item {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(226, 232, 240, 0.9);
            border-radius: 1rem;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            cursor: pointer;
            position: relative;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }
        .dark .faq-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.07);
        }
        .faq-item h3 {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            font-weight: 700;
            padding-right: 2rem;
        }
        .dark .faq-item h3 {
            color: #f8fafc;
        }
        .faq-item h3 i {
            font-size: 1.2rem;
        }
        .faq-toggle {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            transition: transform 0.3s ease;
            color: #64748b;
        }
        [dir="rtl"] .faq-toggle {
            right: auto;
            left: 1.5rem;
        }
        .faq-item.active .faq-toggle {
            transform: rotate(90deg);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            margin-top: 0;
        }
        .faq-item.active .faq-content {
            max-height: 900px;
            margin-top: 1rem;
        }
    
.dark .glass-card-light{
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
        }

.dark .grid-bg-light{
            background-size: 36px 36px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        }
