.brand-section {
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
  }

  .brand-section h2 {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 30px;
  }

  .brand-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .brand-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .brand-logo img {
    max-width: 100%;
    height: 70px;
  }

  .brand-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 1024px) {
    .brand-logos {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .brand-logos {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 480px) {
    .brand-logos {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 320px) {
    .brand-logos {
      grid-template-columns: 1fr;
    }
  }