.platform-highlights{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 30px;
}
.highlight-section{
  width: 100%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}
.highlight-cards{
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.highlight-cards img{
  height: 100px;
  width: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}
.highlight-cards h2{
  font-size: 18px;
  font-weight: 600;
  color: var(--qj-primary-dark);
  text-align: center;
}
.feature-desc{
  color: #333;
  font-size: 13px;
  text-align: center;
}
.highlight-text{
  grid-column: span 2;
}

@media (max-width:510px) {
  .highlight-section{
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
  }
}