.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.logo-box {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(19, 15, 15, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-box:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(19, 15, 15, 0.35);
}
