/* .services-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 260px;
  width: 100%;
  box-sizing: border-box;
}

.services-container h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;

}

.services-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 35px;
  max-width: 1400px;
}

.services-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}


.service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid var(--jkpodolog-color-sage);
}

.service-item:last-child {
  border-bottom: 1px solid var(--jkpodolog-color-sage);
}

.service-item h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.service-price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1200px) {
  .services-container {
    padding: 0 20px;
  }

  .services-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 600px;
  }
  .services-header {
    width: 100%;
  }
  .services-container h2 {
    width: 100%;
    text-align: left;
    font-size: 30px;
  }

  .service-item h3,
  .service-price {
    font-size: 18px;
    line-height: 23px;
  }

  .service-item {
    padding: 20px 0;
    gap: 30px;
  }
} */