.services-page {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.8); /* transparent overlay */
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.services-page .intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.container h2 {
  text-align: center;
}

.service-block {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block img {
  width: 40%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.service-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}

.btn-small {
  display: inline-block;
  padding: 8px 16px;
  background: #d17ba3;
  color: white;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-small:hover {
  background: #a0527d;
}
