@media (max-width: 768px) {
  .brands-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .brand-logo {
    flex: 1 1 0;
    text-align: center;
  }

  .brand-logo img {
    width: 100%;
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .brand-logo:hover img {
    transform: scale(1.05);
  }

  .brands-section {
    padding: 1.5rem 1rem;
  }

  .brands-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}
