.services-page {
  padding: 6rem 2rem;
  background-color: #fffef8;
}

.scroll-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.text-column {
  flex: 1;
  text-align: left;
}

.text-column h2 {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  color: #4a3700;
  margin-bottom: 1rem;
}

.text-column p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 1.2rem;
}
@media (max-width: 768px) {
  .service-section {
    flex-direction: column;
    text-align: center;
  }

  .text-column,
  .image-column {
    width: 100%;
  }

  .image-column img {
    max-width: 100%;
  }
}
