 /* Topics Widget */
        .topics-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .topic-tag {
            padding: 8px 14px;
            background: #f0f0f0;
            color: #003366;
            border-radius: 20px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .topic-tag:hover {
            background: #FF8C00;
            color: white;
        }