/* Shared styles for FirstCall Recovery legal/trust pages.
   Mirrors the design language of index.html (same fonts, colors,
   max-width, spacing rhythm). Vanilla CSS, no dependencies. */
:root {
  --accent: #c1272d;
  --accent-dark: #9c1d22;
  --ink: #16181d;
  --muted: #5b6470;
  --line: #e6e8ec;
  --bg: #ffffff;
  --soft: #f6f7f9;
  --radius: 12px;
  --maxw: 560px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--accent);
}

/* Header — link back to the main landing page */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.site-header a.brand-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--ink);
}

.site-header a.brand-back .arrow {
  color: var(--accent);
  font-size: 18px;
}

/* Content */
main {
  padding: 36px 0 8px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 26px;
}

h2 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin: 30px 0 8px;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

li {
  margin: 6px 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

/* Contact details list */
.contact-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.contact-list li {
  margin: 0 0 18px;
}

.contact-list .label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-list .value {
  font-size: 17px;
}

/* Footer — same content as the main landing page footer */
footer {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding: 28px 0 48px;
}

footer p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

footer .footer-nav {
  margin-top: 12px;
  font-size: 14px;
}

footer .footer-nav a {
  font-weight: 600;
}

footer .privacy {
  margin-top: 14px;
  font-size: 13px;
}

footer .copyright {
  margin-top: 14px;
  font-size: 13px;
}

footer .tagline {
  margin-top: 4px;
  font-size: 13px;
}

@media (min-width: 600px) {
  h1 {
    font-size: 34px;
  }
}
