.services-treatment {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 1;
  margin: 0 auto;
}

.services-treatment__heading {
  color: #E8E6D4;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

.services-treatment__heading span {
  display: block;
  color: var(--color-orange);
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.services-treatment__grid {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}

.services-treatment__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  border-radius: 8px;
  background: #E8E6D4;
  flex: 1 0 auto;
  align-self: stretch;
}

.treatment-card__top {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: baseline;
}

.treatment-card__number,
.treatment-card__name {
  color: #18383C;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.treatment-card__desc {
  align-self: stretch;
  color: var(--color-orange);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.services-treatment__image {
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 8px;
  background: lightgray 50% / cover no-repeat;
  background-size: cover;
  background-position: center;
}