.brand-grid {
    display: grid;
    /* Creates 6 equal columns by default */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    width: 100%;
  }

  /* Individual Brand Card */
  .brand-card {
    background-color: #ffffff;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Hover effect for better UX */
  .brand-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
		border-color: #de3334;
  }

  /* Logo Image */
  .brand-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 6px;
  }

  /* Brand Name Text */
  .brand-name {
    color: #2c3e50;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }

  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .brand-grid {
      grid-template-columns: repeat(4, 1fr); /* 4 columns on medium screens */
    }
  }

  @media (max-width: 768px) {
    .brand-grid {
      grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
    }
  }

  @media (max-width: 480px) {
    .brand-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
      gap: 12px;
    }
  }