﻿
.logo_items {
    display: flex;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    gap: 30px; /* more space between logos */
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.logo_items img {
    height: 100px; /* increased size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

    .logo_items img:hover {
        transform: scale(1.1);
    }

