.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
}

.logo-box {
    border: 1px solid #ccc;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.logo-box img{
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

a {
    text-align: center;
}
