.logo-section {
  width: 100%;
  padding: 60px 0; /* Increased padding for better vertical breathing room */
  background: #fff;
}

@media (max-width: 1024px) {
  .logo-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .logo-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .logo-section {
    padding: 30px 0;
  }
}

.logo-container {
  width: 95%; /* Increased from 90% to allow logos more room to expand */
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Ensures logos don't touch if they get too big */
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .logo-container {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    gap: 10px;
  }
}

.logo-box {
  /* INCREASED SIZE HERE */
  max-width: 120px; /* Was 240px */
  height: 120px;    /* Was 190px */
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; /* Allows boxes to grow equally */
}

@media (max-width: 1024px) {
  .logo-box {
    max-width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .logo-box {
    max-width: 80px;
    height: 80px;
    flex: 0 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .logo-box {
    max-width: 60px;
    height: 60px;
    flex: 0 1 calc(33.333% - 10px);
  }
}

.logo-box img {
  /* This ensures the image fills the new larger box size */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; 
  
  object-fit: contain;
  filter: grayscale(100%);
  transition: .3s; /* Slightly smoother transition */
}

.logo-box img:hover {
  filter: grayscale(0%);
  transform: scale(1.1); /* Slightly more prominent zoom */
}