/* Now and Zen Wellness — Privacy Policy component */
.nz-privacy { background:#fffdf8; color:#1f2937; }
.nz-privacy__wrap { max-width:860px; margin:0 auto; padding:48px 20px; }
.nz-privacy__badge { display:inline-block; background:rgba(46,166,136,.08); color:#2ea688; border:1px solid rgba(46,166,136,.35); padding:4px 10px; border-radius:999px; font-weight:600; font-size:.8125rem; }
.nz-privacy__title { font-size:2rem; line-height:1.2; margin:8px 0; font-weight:800; }
.nz-privacy__updated { color:#6b7280; margin:0 0 16px; }
.nz-privacy__lede { color:#4b5563; margin:0 0 24px; }
.nz-privacy__card { background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:24px; }
.nz-privacy__section + .nz-privacy__section { margin-top:22px; }
.nz-privacy__h2 { font-size:1.125rem; font-weight:700; margin:0 0 8px; }
.nz-privacy__list { margin:0; padding-left:20px; }
.nz-privacy__callout { border-left:4px solid #b28a3c; background:#fffaf0; padding:12px 16px; border-radius:8px; }
.nz-privacy__address a { color:#2ea688; text-decoration:underline; }
.nz-privacy__footer { margin-top:28px; border-top:1px solid #e5e7eb; padding-top:14px; color:#6b7280; font-size:.9375rem; }
/* Header height offsets */
:root{
  --header-h-desktop: 72px;   /* adjust to your actual nav height */
  --header-h-mobile: 60px;    /* tweak if your mobile nav is shorter/taller */
}

/* Push page content below the fixed header */
.nz-privacy { 
  padding-top: var(--header-h-desktop);
}

/* Make in-page anchor links stop under the header too */
html { scroll-padding-top: var(--header-h-desktop); }

@media (max-width: 640px){
  .nz-privacy{
    padding-top: var(--header-h-mobile);
  }
  html { scroll-padding-top: var(--header-h-mobile); }
}
/* =========================================
   Global base (keeps your laptop look)
   ========================================= */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; height: auto; display: block; }  /* responsive images */
a { text-decoration: none; }
:root {
  --container-max: 1200px;   /* nice readable width on laptops */
  --pad: 24px;               /* default horizontal padding */
}

/* Utility container (centered content) */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Optional helpers you can use in HTML */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* Buttons (touch-friendly by default) */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
}

/* =========================================
   Mobile overrides (phones ≤ 640px wide)
   ========================================= */
@media (max-width: 640px) {
  /* Typography: shrink headlines a bit on phones */
  h1 { font-size: 1.75rem; line-height: 1.2; }  /* ~28px */
  h2 { font-size: 1.375rem; line-height: 1.25; }/* ~22px */

  /* Tighter side padding on small screens */
  :root { --pad: 16px; }

  /* Stack any 2-column hero/sections into 1 column */
  .stack-on-mobile { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

  /* Make buttons a touch larger */
  .btn { padding: 14px 20px; }

  /* Show/hide utilities */
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }

  /* Nav tweaks (if your nav uses a horizontal list) */
  .nav-horizontal { display: flex; gap: 16px; }
  .nav-collapse   { display: none; } /* hide extra links by default on phones */

  /* Images inside tight areas get rounded edges (optional) */
  .rounded-img { border-radius: 12px; overflow: hidden; }
}

/* =========================================
   Tablet & up (optional refinements)
   ========================================= */
@media (min-width: 768px) {
  /* Keep your laptop look as-is; add optional polish */
  .stack-on-mobile { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


