.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.company-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  transition: 0.3s ease-in-out;
}

.company-card:hover {
  transform: translateY(-5px);
}

.company-card img {
  max-width: 100%;
  height: 100px;
  margin-bottom: 10px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  object-fit: contain;
}

.company-card p {
  margin: 5px 0;
}

.company-card a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}