.service-detail {
  padding: 2rem 4rem;
  background-color: #f9f9f9;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.service-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1A1C49;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1.05rem;
  color: #5f5f5f;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card-extra {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card-extra h4 {
  font-size: 1.1rem;
  color: #8351A1;
  margin-bottom: 0.75rem;
}

.service-card-extra p {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.6;
}

.service-card-extra:hover {
  transform: translateY(-5px);
}

.hero__cta {
  text-align: center;
}
