.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.button:after {
  content: "→";
  font-size: 18px;
}
.button:hover,
.button:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
}
.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: var(--fg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.related-list a:after {
  content: "→";
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}
.related-list a:hover,
.related-list a:focus {
  color: var(--fg);
  text-decoration: none;
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.article-end-cta {
  margin-top: 36px;
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.article-end-cta h2 {
  margin: 0 0 8px;
}
.article-end-cta p {
  margin: 0;
  color: var(--muted);
}
.service-page {
  padding-top: 32px;
  padding-bottom: 56px;
}
.service-page > .section {
  padding: 30px 0;
}
.service-page > .section:first-of-type {
  padding-top: 24px;
}
.service-page > h1 {
  max-width: 900px;
  line-height: 1.08;
}
.service-page > .section p,
.service-page > .section li {
  line-height: 1.6;
}
@media (max-width: 650px) {
  .article-end-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-page {
    padding-top: 20px;
  }
  .service-page > .section {
    padding: 22px 0;
  }
}
