.page-hero {
  padding-top: 140px;
  padding-bottom: 72px;
  text-align: center;
}

.page-section {
  padding: 72px 24px;
}

.page-section.muted {
  background-color: rgba(31, 65, 41, 0.2);
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-panel {
  background-color: rgba(31, 65, 41, 0.3);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(45, 95, 63, 0.35);
}

.service-header {
  margin-bottom: 24px;
}

.service-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-text {
  color: var(--text-gray-300);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-list {
  list-style: none;
  margin-bottom: 16px;
}

.card-list li {
  color: var(--text-gray-300);
  margin-bottom: 8px;
}

.cta-card {
  text-align: center;
  background-color: rgba(31, 65, 41, 0.3);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(45, 95, 63, 0.35);
}

.cta-card .button-group {
  margin-top: 24px;
}

@media (min-width: 900px) {
  .service-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
