.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.page-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.service-cta {
  text-align: center;
  margin-top: 3rem;
}