.sdm-delivery-steps {
  padding: 48px 0;
}

.sdm-delivery-steps__head {
  margin-bottom: 28px;
  text-align: center; /* центрируем весь блок */
}

.sdm-delivery-steps__head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
  color: #1d1d1d;
  text-align: center; /* центр заголовка */
}

.sdm-delivery-steps__head p {
  max-width: 700px; /* чуть уже — выглядит аккуратнее */
  margin: 0 auto; /* центрируем сам блок текста */
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  text-align: center; /* центр текста */
}

.sdm-delivery-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sdm-delivery-steps__item {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 14px;
  padding: 22px 18px;
  min-height: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.sdm-delivery-steps__item span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 800;
  color: #018cd1;
}

.sdm-delivery-steps__item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
  color: #222;
}

.sdm-delivery-steps__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #666;
}

@media (max-width: 1199px) {
  .sdm-delivery-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .sdm-delivery-steps {
    padding: 34px 0;
  }

  .sdm-delivery-steps__head h2 {
    font-size: 24px;
  }

  .sdm-delivery-steps__grid {
    grid-template-columns: 1fr;
  }

  .sdm-delivery-steps__item {
    min-height: auto;
  }
}