/* Common styles for all service-detail pages */
.service-detail {
  padding: 48px 0 56px 0;
  background: #f8fafd;
}
.service-detail .container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(30,40,90,0.07);
  padding: 40px 28px 32px 28px;
  max-width: 900px;
}
.service-detail h2 {
  color: #1a237e;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.service-detail h3, .service-detail h4 {
  color: #1976d2;
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.service-detail p, .service-detail ul, .service-detail ol {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.service-detail ol {
  margin-left: 1.2em;
  padding-left: 0.5em;
}
.service-detail li {
  margin-bottom: 0.7em;
}
.service-detail ul {
  list-style: disc inside;
  margin-bottom: 1.2em;
}
.service-detail strong {
  color: #0d47a1;
}
@media (max-width: 600px) {
  .service-detail .container {
    padding: 18px 6px 18px 6px;
  }
  .service-detail h2 {
    font-size: 1.3rem;
  }
  .service-detail h3, .service-detail h4 {
    font-size: 1.1rem;
  }
}
