#zudo-widget {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    background: #f7f8ff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.badge-box {
    text-align: center;
    width: 130px;
    transition: transform 0.3s ease;
}

.badge-box img {
    width: 55px;
    height: 55px;
    margin-bottom: 8px;
}

.badge-box p {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.badge-box:hover {
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    #zudo-widget { gap: 15px; }
    .badge-box { width: 100px; }
}
    