.services-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.service-card {
  display: flex;
  align-items: center; /* vertical alignment */
  gap: 24px; /* spacing between image & text */
  max-width: 900px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.service-image {
  width: 40%;  /* control image width */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-info {
  flex: 1;
  text-align: left;
}

.service-description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 12px;
}

.service-price {
  font-size: 1.4em;
  color: #27ae60;
  font-weight: bold;
}
