li {
    margin-bottom: 8px;
    font-weight: 300;
}

.title-box {
    background-color: #216199;
}

.info-box {
    background-color: #e4f0fb;
}

.text-bold {
    font-weight: 600;
}

.tiny {
    font-weight: 400;
}


.category-card {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 73, 143, 0.6);
            z-index: 1;
        }
        
        .category-card:hover::before {
            background: rgba(0, 73, 143, 0.8);
        }
        
        .category-card h3 {
            position: relative;
            z-index: 2;
        }