.service-page {
  line-height: 1.5;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0) 20%,
      rgba(0, 0, 0, 0) 80%,
      rgba(255, 255, 255, 1) 100%
    ),
    linear-gradient(
      90deg,
      rgba(73, 84, 88, 0.3),
      rgba(87, 89, 88, 0.3),
      rgba(139, 135, 123, 0.3),
      rgba(217, 196, 169, 0.3),
      rgba(242, 222, 195, 0.3)
    );
  background-size: 400% 400%;
  animation: gradientShift 10s infinite;
  margin: 4rem 2rem;
  border-radius: 1rem;
  padding-top: 4rem;
}

.image-wrapper,
.text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 442 / 371;
}

.image-wrapper img {
  display: flex;
  height: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.text-content {
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.text-content {
  font-size: calc(0.8vw + 0.4rem);
}

.service_price {
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 110%;
  color: var(--secondary-font-color);
}

.heading-h2 {
  font-size: 2.5em;
  font-weight: 300;
  line-height: 1.2;
}

.service_description {
  font-size: 1.2em;
  line-height: 1.6;
  font-weight: 200;
}

.service-comment {
  font-size: 2.2em;
  line-height: 1.6;
  font-weight: 200;
  text-align: center;
  padding: 3rem 1rem;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 767px) {
  .service-page {
    margin: 0 0.5em;
  }

  .service-page .logo {
    font-size: 2rem;
  }

  .service-page .grid-layout {
    row-gap: 0;
  }

  .text-wrapper {
    order: 1;
    display: block;
    padding-top: 2rem;
  }

  .service-comment {
    font-size: 0.9em;
    padding: 3rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-page {
    margin: 0 1em;
  }

  .service-page .grid-layout {
    column-gap: 2.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .service-comment {
    font-size: 1.4rem;
  }
}
