/* BenefitDocs policy-page stylesheet - shared by terms-of-service.html,
   privacy-policy.html, document-disclaimer.html. Colors and fonts match
   the homepage (index.html, sourced from Andy's benefitdocs-marketing-
   homepage-v3.html) so inner pages don't look like a different site. */

:root {
  --navy: #0a1e37;
  --teal: #009181;
  --gold: #ddac39;
  --paper: #ffffff;
  --offwhite: #f8fafb;
  --ink: #16222e;
  --ink-soft: #5b6b78;
  --ink-faint: #8a98a3;
  --line: #e6ebee;
  --maxw: 760px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

header {
  border-bottom: 1px solid var(--line);
}

nav.simple-nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-word {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px 64px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.tagline {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 0.75rem;
}

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

a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.8125rem;
}

.footer-inner a {
  color: var(--ink-soft);
  margin-right: 1rem;
}
