.logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.logo-item {
    flex: 1 1 25%;
    max-width: 250px;
    background-color: white;
    padding: 10px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    border-radius: 4px;
    text-align: center;
}

.logo-item img {
    width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .logo-item {
        flex: 1 1 45%;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        flex: 1 1 50%;
        max-width: 150px;
    }
    .logo-item img {
        width: 60%;
        height: auto;
    }
}
