.services-page {
    padding: 40px 0px;
    background-color: white;
    opacity: 0;
    animation: fadeSlideUp 1.2s ease forwards;
}

.services-logo {
    width: 250px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  font-family: 'Jost', serif;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 80px;
}

.services-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    color: var(--black);
    text-align: right;
    flex: 1;
}

.services-disclaimer {
  padding: 15px 20px;
  margin: -60px 80px 0px 80px;
  font-size: 14px;
  line-height: 1.8;
}

.services-pricelist {
  max-width: 500px;
  margin: 0 auto;
}

.services-pricelist h3 {
  text-align: center;
  font-size: 24px;
  font-family: 'Jost', serif;
  margin-bottom: 10px;
}

.price-underline {
  width: 200px;
  height: 2px;
  background-color: var(--pink-bold);
  margin: 0 auto 30px auto;
}

.price-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

.price-name {
  font-size: 15px;
  color: var(--black);
  white-space: nowrap;
  min-width: 150px;
}

.price-dots {
  flex: 1;
  border-bottom: 2px dotted var(--black);
  margin: 0 10px;
  position: relative;
  top: -4px;
}

.price-value {
  font-size: 15px;
  color: var(--black);
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
}

.service-button {
  margin-top: 40px;
  padding-bottom: 60px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .services-page {
    padding: 30px 0px;
  }

  .services-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 15px;
    margin-bottom: 15px;
  }

  .services-logo {
    width: 150px;
  }

  .services-header h2 {
    font-size: 34px;
    text-align: center;
  }

  .services-disclaimer {
    margin: 0 20px;
    font-size: 13px;
  }

  .services-pricelist {
    max-width: 100%;
    padding: 0 20px;
    margin-top: 20px;
  }

  .services-pricelist h3 {
    font-size: 20px;
  }

  .price-name {
    font-size: 13px;
    min-width: 120px;
  }

  .price-value {
    font-size: 13px;
  }

  .service-button {
    padding: 20px 20px 40px 20px;
  }

  .service-button .explore-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}