@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

  :root {
    --green-deep:  #1e3d18;
    --green-mid:   #2f5e24;
    --green-main:  #629c51;
    --green-light: #a8d08a;
    --green-pale:  #eef6e9;
    --warm-gray:   #6b6b60;
    --text-dark:   #1c1c18;
    --shadow-card: 0 4px 24px rgba(30,61,24,.10);
    --radius:      16px;
    --transition:  .25s cubic-bezier(.4,0,.2,1);
  }

  html, body { background: #f7f9f5; }

  /* ── Hero banner ── */
  .policy-hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin-top: -82px;
  }
  .policy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .policy-hero::after {
    content: '\f023';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    color: rgba(255,255,255,.05);
    pointer-events: none;
  }
  .policy-hero__inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
  }
  .policy-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;
    padding: .3rem .95rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.1rem;
  }
  .policy-hero h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 .9rem;
  }
  .policy-hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    margin: 0 auto;
  }

  /* ── Page layout ── */
  .policy-page {
    max-width: 1100px;
    margin: 2.5rem auto 5rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
  @media (max-width: 860px) {
    .policy-page { grid-template-columns: 1fr; }
    .policy-toc  { display: none; }
  }

  /* ── Table of Contents (sticky sidebar) ── */
  .policy-toc {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--green-main);
    padding: 1.25rem 1rem;
  }
  .policy-toc__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--green-deep);
    margin: 0 0 .75rem;
    display: flex;
    align-items: center;
    gap: .45rem;
  }
  .policy-toc__heading i { color: var(--green-main); font-size: .8rem; }
  .policy-toc__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: .1rem;
  }
  .policy-toc__list a {
    display: block;
    padding: .38rem .5rem;
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    color: var(--warm-gray);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    line-height: 1.4;
  }
  .policy-toc__list a:hover {
    background: var(--green-pale);
    color: var(--green-mid);
    text-decoration: none;
  }

  /* ── Main content card ── */
  .policy-content {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2.5rem 2.75rem;
  }
  @media (max-width: 600px) { .policy-content { padding: 1.5rem 1.25rem; } }

  .policy-content__effective {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    color: var(--green-mid);
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }

  .policy-content__intro {
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--green-pale);
  }

  /* Section */
  .policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--green-pale);
  }
  .policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

  .policy-section__head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .9rem;
  }
  .policy-section__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--green-main);
    color: #fff;
    border-radius: 50%;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .policy-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    margin: 0;
  }

  .policy-section p,
  .policy-section ul {
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 .6rem;
  }
  .policy-section ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .35rem;
  }
  .policy-section ul li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
  }
  .policy-section ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-main);
    margin-top: .57rem;
    flex-shrink: 0;
  }
  .policy-section a { color: var(--green-mid); }
  .policy-section a:hover { color: var(--green-main); }

  /* Contact block */
  .policy-contact {
    background: var(--green-pale);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-top: .75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--text-dark);
    line-height: 1.8;
  }
  .policy-contact strong { color: var(--green-deep); }
  .policy-contact a { color: var(--green-mid); }
