body {
  margin: 0;
  font-family: "Baloo 2", cursive;
  background: linear-gradient(to bottom right, #f9dfc8, #f8bfb7, #f8bfb7);
  padding: 30px;
  color: #91352b;
}

.back-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 8px 20px;
  border: 2px solid #933;
  border-radius: 20px;
  color: #933;
  text-decoration: none;
  font-weight: bold;
  background-color: #fde3d9;
  transition: 0.3s;
}

.back-btn:hover {
  background-color: #933;
  color: #fff;
}

.title {
  font-size: 2.3rem;
  color: #933;
  margin: 0 0 30px 0;
  font-family: 'Baloo', cursive;
  letter-spacing: 1px;
  text-align: center;
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.service-row {
  display: grid;
  grid-template-columns: 60px 210px 1fr;
  background: #fff0e5;
  border: 2px solid #91352b;
  padding: 20px;
  border-radius: 10px;
  border-bottom: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
}

.service-row:hover {
  background-color: #fce5da;
}

.service-row .number {
  font-weight: bold;
  font-size: 20px;
  color: #91352b;
}

.service-row .title-text {
  font-weight: bold;
  color: #91352b;
  font-size: 18px;
}

.service-row .desc {
  font-size: 14px;
  color: #91352b;
  line-height: 1.4;
}

.service-row .price {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 20px;
  font-weight: bold;
  color: #91352b;
  font-family: "Baloo 2", cursive;
}

.service-row:last-child {
  border-bottom: 2px solid #91352b;
}

@media screen and (max-width: 768px) {
  .service-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .service-row .number {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-row .title-text {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-row .price {
    position: static;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .service-row .desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .title {
    margin-top: 80px;
    font-size: 1.8rem; 
  }
}
