.page-about {
  --accent: #0e7490;
  --accent-2: #f59e0b;
}

.page-about .card-half {
  grid-column: span 6;
}

.page-about .steps {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.page-about .steps li {
  padding: 10px 12px 10px 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 67, 108, 0.13);
}

.page-about .steps li::before {
  content: attr(data-step);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
  top: 11px;
  left: 10px;
  background: linear-gradient(130deg, var(--accent), #0284c7);
}

@media (max-width: 900px) {
  .page-about .card-half {
    grid-column: span 12;
  }
}
