/* Initial State for Service Page Feature Cards */
.feature-icon-card {
  opacity: 0;
  transform: translateY(30px);
}

/* Initial State for other content blocks */
.content-block {
  opacity: 0;
  transform: translateY(30px);
}

.stat-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px rgba(15, 23, 42, 0.08);
}

.service-prose h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.service-prose ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.service-prose li {
  position: relative;
  padding-left: 1.75rem;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 500;
}

.service-prose li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: #00a96e;
  font-weight: 700;
}

.single-service-link.is-active {
  border-color: #1800ac;
  color: #1800ac;
  background: #f0f2ff;
}
