.howto-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.howto-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* GRID 3 kolom seperti contoh */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 10px;
}

.step-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-item p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.doodle-arrow {
  width: 120px;
  margin-top: 18px;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .doodle-arrow {
    width: 90px;
  }
}