/* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .sidebar-section {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .sidebar-title {
            font-size: 20px;
            color: #003366;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #FF8C00;
        }
        
        .latest-news-item {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            text-decoration: none;
            display: block;
            transition: background 0.3s ease;
        }
        
        .latest-news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .latest-news-item:hover {
            background: #f8f9fa;
            margin: 0 -15px;
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .latest-category {
            font-size: 11px;
            color: #FF8C00;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        
        .latest-title {
            font-size: 15px;
            color: #003366;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 6px;
        }
        
        .latest-time {
            font-size: 12px;
            color: #999;
        }