 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        } */
        
        /* .card {
            width: 100%;
            max-width: 500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        } */
        
        /* .card-header {
            background: #2c3e50;
            color: white;
            padding: 20px;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
        } */
        
        /* .card-body {
            padding: 25px;
        } */
        
        /* .news-list {
            list-style: none;
        } */
        
        /* .news-list li {
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        } */
        
        .news-list li:hover {
            transform: translateX(5px);
        }
        
        .news-list a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            padding: 12px 15px;
            border-radius: 8px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
        }
        
        .news-list a:hover {
            background: #e9ecef;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: #3498db;
        }
        
        .icon-wrapper {
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #3498db;
            border-radius: 8px;
            margin-right: 15px;
            color: white;
            font-size: 20px;
        }
        
        .kemnaker { background: #e74c3c; }
        .bpjs { background: #27ae60; }
        .blk { background: #f39c12; }
        .pemprov { background: #9b59b6; }
        .disnakertrans { background: #16a085; }
        
        .link-text {
            flex: 1;
        }
        
        .arrow {
            color: #95a5a6;
            transition: transform 0.3s ease;
        }
        
        .news-list a:hover .arrow {
            transform: translateX(3px);
            color: #3498db;
        }
        ol, ul {
            padding-left: 0rem;
        }
        @media (max-width: 500px) {
            .card-header {
                font-size: 1.2rem;
                padding: 15px;
            }
            
            .card-body {
                padding: 15px;
            }
            
            .icon-wrapper {
                width: 35px;
                height: 35px;
                font-size: 16px;
                margin-right: 12px;
            }
            
            .news-list a {
                padding: 10px;
                font-size: 0.9rem;
            }
        }