/* Certification Bar - All logos centered */
.h4-cert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 16px 20px;
  background: #f8f6f3;
  border-bottom: 1px solid #e8e4dc;
}

.h4-cert-bar .cert-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.h4-cert-bar .cert-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

@media (max-width: 600px) {
  .h4-cert-bar {
    gap: 15px;
    padding: 12px 15px;
    flex-wrap: wrap;
  }
  .h4-cert-bar .cert-logo {
    height: 28px;
  }
  .h4-cert-bar .cert-text {
    font-size: 12px;
  }
}
