.single-steps {
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.single-steps__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-steps__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #405363;
}

.single-steps__title::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 30px;
  background-color: #405363;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}

.single-steps__text {
  color: var(--Black, #222);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}