/* ================================================
   SHC Legal Pages Shared Styles
   Privacy Policy, Terms of Service, Disclaimer
   Loaded via functions.php
   ================================================ */

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

  :root {
    --navy: #0F1B2D;
    --navy-mid: #1B2A4A;
    --teal: #1D6E6B;
    --coral: #C44B35;
    --off-white: #F7F8FA;
    --white: #FFFFFF;
    --text-dark: #1B2A4A;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.6);
    --border-light: rgba(255,255,255,0.1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  .shc-nav {
    background: var(--navy);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
  }
  .shc-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .shc-nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
  }
  .shc-nav-logo span { color: var(--teal); }
  .shc-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
  }
  .shc-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .shc-nav-links a:hover { color: var(--white); }
  .shc-nav-links a.nav-cta {
    background: var(--coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
  }
  .shc-nav-links a.nav-cta:hover { background: #a83d2c; }

  /* ── PAGE HEADER ── */
  .page-header {
    background: var(--navy);
    padding: 64px 24px 48px;
    text-align: center;
  }
  .page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 5vw, 40px);
    color: var(--white);
    margin-bottom: 12px;
  }
  .page-header .subtitle {
    color: var(--text-muted);
    font-size: 15px;
  }

  /* ── CONTENT ── */
  .legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
  }
  .legal-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--navy-mid);
    margin: 40px 0 16px;
    padding-top: 8px;
  }
  .legal-content h2:first-of-type { margin-top: 0; }
  .legal-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-mid);
    margin: 28px 0 10px;
  }
  .legal-content p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
  }
  .legal-content strong { color: var(--navy-mid); }
  .legal-content ul {
    margin: 8px 0 16px 20px;
    font-size: 15px;
    color: #3a3a4a;
  }
  .legal-content ul li { margin-bottom: 6px; line-height: 1.65; }
  .legal-content a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .contact-block {
    background: #f0f1f5;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.75;
  }
  .contact-block strong { display: block; margin-bottom: 4px; }

  /* ── FOOTER ── */
  .shc-footer {
    background: var(--navy);
    padding: 48px 24px 32px;
    border-top: 1px solid var(--border-light);
  }
  .shc-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .shc-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-bottom: 24px;
  }
  .shc-footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .shc-footer-links a:hover { color: var(--white); }
  .shc-footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-light);
    margin: 0 auto 20px;
  }
  .shc-footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .shc-footer-acknowledgement {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
  }

  @media (max-width: 700px) {
    .shc-nav-inner { flex-direction: column; gap: 12px; }
    .shc-nav-links { gap: 16px; justify-content: center; }
    .page-header { padding: 48px 20px 36px; }
    .legal-content { padding: 32px 20px 60px; }
  }

/* ── Additional list styles (Terms of Service) ── */
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ol li { margin-bottom: 6px; line-height: 1.65; }

/* ── Highlight box (Disclaimer) ── */
  .legal-content p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
  }
  .legal-content strong { color: var(--navy-mid); }
  .legal-content ul {
    margin: 8px 0 16px 20px;
    font-size: 15px;
    color: #3a3a4a;
