body {
margin: 0;
font-family: Arial, sans-serif;
  background: #f8f9fa;
  color: #333;
}
section {
max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.logo-wall a {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-wall img {
  width: 100%;
  max-width: 1500px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  padding: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.logo-wall a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.logo-wall a{
  text-decoration: none;
  color: #222;
}