.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header p {
  max-width: 600px;
  margin: auto;
  color: var(--muted-color);
}

.service-row {
  display: flex;
  justify-content: flex-start;
  margin: 2rem 0;
}

.service-row.reverse {
  justify-content: flex-end;
}

.service-card {
  max-width: 520px;
  padding: 2rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.status {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(200,200,200,0.2);
  color: var(--muted-color);
}


.service-card.featured {
  border: 1px solid var(--primary);
}


@media (max-width: 700px) {

  .service-row,
  .service-row.reverse {
    justify-content: center;
  }

  .service-card {
    max-width: 100%;
  }

}
