.brands-section {
  padding: 2rem 2rem;
  background-color: #111;
  text-align: center;
}

.brands-section h2 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
 
  color: #f9f9f9;
}

.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.brand-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}
.brands-grid .brand-logo:first-child img {
  transform: scale(1.2);
}