.service__page-content-title-subtitle h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.service__page-content-title-subtitle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service__page-content-subtitle {
  font-size: clamp(
    17px,
    calc(17px + (18 - 17) * (100cqw - 1280px) / (1600 - 1280)),
    18px
  );
  line-height: 140%;
  color: var(--gray-color);
}

.service__page-content-subtitle *:first-child {
  margin-top: 0;
}

.service__page-content-subtitle *:last-child {
  margin-bottom: 0;
}
@media(max-width: 1366px) {
  .service__page-content-subtitle {
  line-height: 135%;
  }
}

@media(max-width: 992px) {
  .service__page-content-title-subtitle {
    gap: 12px;
    margin-bottom: 24px;
  }
  .service__page-content-subtitle {
    font-size: 15px;
    line-height: 138%;
  }
}