    :root {
      --teal: #45B8AC;
      --teal-dark: #339990;
      --cream: #FDF8F2;
      --text: #1a1a1a;
      --muted: #6b7280;
      --card-bg: #ffffff;
      --border: #e5e7eb;
      /* Added for the ported nav: these pages had no soft-teal or shadow token. */
      --teal-soft: #e8f8f6;
      --shadow: 0 18px 50px rgba(21, 32, 31, 0.12);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--cream); color: var(--text); }

    /* Site nav — matches index.html so every page shares one layout and one breakpoint. The nav
       this replaced was a teal bar with a hard-coded height: 56px flex row and no media query
       anywhere in the file, so on a phone the links and the language pill wrapped inside that fixed
       height and collided. Below 640px .nav-inner stacks into a column, as the landing page does.
       Colours use this page's own variable names (--text/--border), not index.html's
       (--ink/--line); the two pages define different sets, per CLAUDE.md. */
    .wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
    .nav { position: sticky; top: 0; z-index: 50; background: rgba(253, 248, 242, 0.88); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(231, 236, 235, 0.8); }
    .nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
    .brand-mark { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; box-shadow: 0 8px 20px rgba(69, 184, 172, 0.3); }
    .nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 650; color: var(--muted); }
    /* Explicit colour + no-underline: these pages set a global `a { color: var(--teal) }` and
       `a:hover { text-decoration: underline }`, which index.html does not. */
    .nav-links a { color: var(--muted); }
    .nav-links a:hover { color: var(--teal-dark); text-decoration: none; }

    .lang-switch { position: relative; margin-inline-start: 4px; padding-inline-start: 16px; border-inline-start: 1px solid var(--border); }
    .lang-switch summary { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; list-style: none; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 700; color: var(--muted); }
    .lang-switch summary::-webkit-details-marker { display: none; }
    .lang-switch summary::marker { content: ""; }
    .lang-switch summary:hover, .lang-switch[open] summary { color: var(--teal-dark); border-color: var(--teal); }
    .lang-menu { position: absolute; inset-inline-end: 0; top: calc(100% + 8px); z-index: 60; display: flex; flex-direction: column; gap: 2px; min-width: 160px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; }
    .lang-menu a { padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 650; color: var(--text); }
    .lang-menu a:hover { background: var(--teal-soft); text-decoration: none; }
    .lang-menu a[aria-current="page"] { color: var(--teal-dark); font-weight: 800; background: var(--teal-soft); pointer-events: none; }

    .page-header { background: var(--teal); color: #fff; padding: 48px 24px 40px; text-align: center; }
    .page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
    .page-header p { font-size: 16px; opacity: 0.88; }

    .content { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }

    .contact-card { background: var(--teal); color: #fff; border-radius: 16px; padding: 28px 32px; margin-bottom: 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .contact-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
    .contact-card p { font-size: 15px; opacity: 0.9; }
    .contact-card a { display: inline-block; margin-top: 12px; background: #fff; color: var(--teal); font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 50px; text-decoration: none; }
    .contact-card a:hover { background: rgba(255,255,255,0.9); }

    h2.section-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; }

    .faq-group { margin-bottom: 40px; }
    .faq-group h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 12px; }

    /* FAQ accordion — scoped to .faq-group on purpose. The nav's language switcher is ALSO a
       <details>/<summary>, so bare element selectors here were styling it as an FAQ card: it got
       the white card background (which hid the white "English" label against it), the accordion's
       "+" marker, and 16px of padding that inflated the pill over the nav links. Only these
       support pages have a FAQ, which is why index/privacy render the switcher correctly. */
    .faq-group details { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
    .faq-group summary { padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
    .faq-group summary::-webkit-details-marker { display: none; }
    /* margin-inline-start, not margin-left: this file uses logical properties throughout so the
       Arabic RTL page mirrors correctly. */
    .faq-group summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--teal); flex-shrink: 0; margin-inline-start: 12px; }
    .faq-group details[open] summary::after { content: '−'; }
    .faq-body { padding: 0 20px 16px; font-size: 14px; color: #374151; line-height: 1.7; }
    .faq-body p { margin-bottom: 8px; }
    .faq-body ul { padding-left: 20px; }
    .faq-body li { margin-bottom: 4px; }
    .faq-body a { color: var(--teal); text-decoration: none; }
    .faq-body a:hover { text-decoration: underline; }

    footer { background: #1a1a1a; color: rgba(255,255,255,0.6); text-align: center; padding: 32px 24px; font-size: 14px; }
    footer a { color: rgba(255,255,255,0.75); text-decoration: none; margin: 0 12px; }
    footer a:hover { color: var(--teal); }
    footer .copyright { margin-top: 12px; font-size: 13px; opacity: 0.5; }

    /* The sub-pages previously had no @media rules at all — this breakpoint is what stops the nav
       collapsing in on itself on a phone. flex-wrap on .nav-links additionally keeps the longer
       translated labels (fr/es/tr) from overflowing horizontally. */
    @media (max-width: 640px) {
      .wrap { width: min(100% - 28px, 1120px); }
      .nav-inner { height: auto; padding: 14px 0; align-items: flex-start; gap: 14px; flex-direction: column; }
      .nav-links { gap: 16px; flex-wrap: wrap; }
    }
