.h5 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2px;
    width: 90%;
    max-width: 1110px;
    margin: auto;
  }

  .logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #555;
    padding: 10px;
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(100%);
    border: 1px solid white;
    border-radius: 5px;
  }

  .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
  }

  .logo-item:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }