
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, #1e3a5f 0%, #0d1f33 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #1e3a5f;
        }
        
        .site-title h1 {
            font-size: 22px;
            font-weight: bold;
        }
        
        .site-title p {
            font-size: 12px;
            opacity: 0.9;
        }
        
        .header-links {
            display: flex;
            gap: 20px;
            font-size: 13px;
        }
        
        .header-links a:hover {
            color: #fbbf24;
        }
        
        /* Navigation */
        .nav {
            background-color: #2563eb;
            padding: 0;
        }
        
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        
        .nav li a {
            display: block;
            padding: 12px 18px;
            color: white;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .nav li a:hover {
            background-color: #1d4ed8;
        }
        
        /* Main Content */
        .main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        /* News Section */
        .news-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .section-header {
            background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
            color: white;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: bold;
        }
        
        .news-list {
            padding: 0;
        }
        
        .news-item {
            padding: 15px 20px;
            border-bottom: 1px solid #e5e5e5;
            display: flex;
            gap: 15px;
            transition: background-color 0.3s;
        }
        
        .news-item:hover {
            background-color: #f0f9ff;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-date {
            background-color: #dbeafe;
            color: #1e40af;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            text-align: center;
            min-width: 60px;
        }
        
        .news-date .day {
            font-size: 18px;
            font-weight: bold;
            display: block;
        }
        
        .news-title {
            flex: 1;
            font-size: 14px;
            color: #1e3a5f;
            display: flex;
            align-items: center;
        }
        
        .news-title:hover {
            color: #2563eb;
        }
        
        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .quick-links {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .quick-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        
        .quick-link {
            background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
            color: white;
            padding: 20px 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 13px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .quick-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
        }
        
        .quick-link-icon {
            font-size: 28px;
            margin-bottom: 8px;
        }
        
        /* Important Links */
        .important-links {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .links-list {
            padding: 10px 0;
        }
        
        .link-item {
            display: block;
            padding: 12px 20px;
            font-size: 13px;
            color: #1e3a5f;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
        }
        
        .link-item:hover {
            background-color: #f0f9ff;
            color: #2563eb;
            padding-right: 25px;
        }
        
        .link-item:last-child {
            border-bottom: none;
        }
        
        .link-item::before {
            content: "◀";
            margin-left: 8px;
            font-size: 10px;
            color: #2563eb;
        }
        
        /* Statistics */
        .stats-section {
            background: linear-gradient(135deg, #1e3a5f 0%, #0d1f33 100%);
            padding: 40px 0;
            margin-top: 30px;
        }
        
        .stats-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            color: white;
        }
        
        .stat-item .number {
            font-size: 36px;
            font-weight: bold;
            color: #fbbf24;
            display: block;
        }
        
        .stat-item .label {
            font-size: 14px;
            margin-top: 8px;
        }
        
        /* Footer */
        .footer {
            background-color: #111827;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            font-size: 16px;
            margin-bottom: 20px;
            color: #fbbf24;
        }
        
        .footer-section p,
        .footer-section a {
            font-size: 13px;
            color: #9ca3af;
            line-height: 2;
            display: block;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #6b7280;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .header-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
    