.numbered-step {
  margin-block-end: 2rem;
}
.numbered-step__header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
.numbered-step__number {
  background-color: #512888;
  color: #fff;
  font-family: arial, sans-serif;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .numbered-step__number {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}
.numbered-step__title {
  margin: 0;
  font-family: "Noto Serif", serif;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .numbered-step__title {
    font-size: 50px;
  }
}
.numbered-step__description {
  line-height: 1.5;
  color: #000;
}