* {
  box-sizing: border-box;
  margin: 0;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	font-weight: 400;
}

.section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  padding: 16px;
  gap: 20px;

  max-width: 600px;
  width: 100%;
}

.steps {
  padding-inline-start: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: left;
}

.call-to-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heading {
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
}

.bottom-text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.2px;
  color: #555555;
}

.image {
  width: 200px;
}

.image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 569px) {
  .section {
    flex-direction: column-reverse;
  }
}
