/* Custom Background */
body {
    background-color: #F8F9FA;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling tambahan untuk Card agar mirip gambar */
.custom-card {
    border-radius: 8px;
    transition: transform 0.3s;
    min-height: 280px;
    /* Tinggi minimum agar seragam */
}

.custom-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.card-title-custom {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Agar logo gambar (jika bukan icon font) ukurannya pas */
.img-icon {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}