/* Basic reset for this page */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: #111827;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 110px 16px 40px;
}

/* HERO */
.hero-title {
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: #0f172a;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: .96rem;
  color: #6b7280;
}

.hero-intro {
  font-size: .98rem;
  color: #374151;
  line-height: 1.7;
  margin: 10px 0 18px;
}

.cta-row,
.closing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cta-row {
  margin-top: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: #ff6b00;
  color: #fff;
  border: none;
}

.btn-secondary {
  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  font-weight: 500;
}

/* SECTIONS */
section {
  margin-top: 28px;
}

section h2 {
  font-size: 1.4rem;
  color: #111827;
  margin: 0 0 6px;
}

section p {
  font-size: .98rem;
  color: #374151;
  line-height: 1.7;
  margin: 6px 0 0;
}

section ul {
  font-size: .96rem;
  color: #374151;
  line-height: 1.7;
  padding-left: 20px;
  margin: 4px 0 0;
}

.closing-title {
  font-size: 1.35rem;
  margin-top: 30px;
  color: #111827;
}

@media (max-width: 600px) {
  .page-wrap {
    padding-top: 100px;
  }
}
