.panels-list {
  padding: 60px 0;
  background: #f9fafc;
}

.panels-list h2 {
  text-align: center;
  font-size: 32px;
  color: #2B3A55;
  margin-bottom: 20px;
  font-weight: 700;
}

.panels-list p {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.panel-group {
  margin-bottom: 50px;
}

.panel-group h3 {
  font-size: 22px;
  color: #2B3A55;
  margin-bottom: 20px;
  text-align: center;
}

.panel-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.logo-box {
  width: 180px;            /* Same width for all */
  height: 100px;           /* Same height for all */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;      /* Prevent distortion */
}

/* Responsive */
@media (max-width: 768px) {
  .logo-box {
    width: 150px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .logo-box {
    width: 120px;
    height: 70px;
  }
}