.sg-how{
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
.sg-how .section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

/* Grid */
.sg-how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Cards */
.sg-how-item{
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  border: 1px solid #eef1f4;
}

.sg-how-item h3{
  margin: 0 0 8px;
  font-size: 16px;
  color: #123257;
}

.sg-how-item p{
  margin: 0;
  font-size: 14px;
  color: #5b6673;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px){
  .sg-how-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .sg-how-grid{
    grid-template-columns: 1fr;
  }

  .sg-how{
    padding: 60px 0;
  }
}