﻿/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue:       #0d5fa6;
      --blue-dark:  #0a3d6b;
      --blue-deep:  #072d52;
      --blue-light: #e8f2fb;
      --blue-mid:   #cce0f5;
      --text:       #1c2b3a;
      --text-muted: #56687c;
      --text-light: #8a9db0;
      --border:     #d4e0ec;
      --bg:         #f0f5fb;
      --bg-white:   #ffffff;
      --radius:     8px;
      --shadow-sm:  0 1px 4px rgba(13,63,106,.07);
      --shadow-md:  0 4px 16px rgba(13,63,106,.13);
    }

    html { font-size: 18px; scroll-behavior: smooth; }

    body {
      font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      -webkit-text-size-adjust: 100%;
    }

    a { color: var(--blue); }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; display: block; }

    /* ===== SKIP LINK ===== */
    .skip-link {
      position: absolute; top: -40px; left: 0;
      background: var(--blue); color: #fff;
      padding: 8px 16px; z-index: 1000; border-radius: 0 0 8px 0;
    }
    .skip-link:focus { top: 0; }

    /* ===== HEADER ===== */
    .site-header {
      background: var(--blue); color: #fff;
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,.18);
    }
    .header-inner {
      max-width: 1160px; margin: 0 auto; padding: 0 20px;
      display: flex; align-items: center; gap: 8px;
      height: 64px;
    }

    /* Logo */
    .logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; color: #fff; flex-shrink: 0;
    }
    .logo:hover { text-decoration: none; opacity: .92; }
    .logo-img {
      height: 50px; width: auto; max-width: 124px;
      display: block; object-fit: contain;
    }
    .logo-text {
      font-family: 'PT Serif', serif;
      font-size: .9375rem; font-weight: 700; line-height: 1.25;
      border-left: 2px solid rgba(255,255,255,.3);
      padding-left: 10px;
    }

    /* Hamburger */
    .nav-toggle {
      display: none; margin-left: auto;
      background: transparent; border: none; cursor: pointer;
      padding: 8px; color: #fff; line-height: 1;
    }

    /* Main nav */
    .main-nav { flex: 1; display: flex; justify-content: center; }
    .main-nav ul { list-style: none; display: flex; }
    .main-nav a {
      display: flex; align-items: center;
      padding: 0 13px; height: 64px;
      color: rgba(255,255,255,.88); text-decoration: none;
      font-size: .9rem; white-space: nowrap;
      border-bottom: 3px solid transparent;
      transition: background .15s, color .15s;
    }
    .main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
    .main-nav a.active { color: #fff; border-bottom-color: #fff; background: rgba(255,255,255,.1); }

    /* Header buttons */
    .header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
    .btn-hdr {
      display: flex; align-items: center; gap: 5px;
      padding: 7px 13px; border-radius: 20px;
      border: 1.5px solid rgba(255,255,255,.35);
      background: transparent; color: #fff;
      font-size: .8125rem; font-family: inherit;
      cursor: pointer; text-decoration: none;
      transition: background .15s, border-color .15s;
      white-space: nowrap;
    }
    .btn-hdr:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
    /* Primary header button вЂ” РІС‹РґРµР»СЏРµРј В«РќР°РїРёСЃР°С‚СЊ РѕР±СЂР°С‰РµРЅРёРµВ» */
    .btn-hdr--primary {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.55);
    }
    .btn-hdr--primary:hover { background: rgba(255,255,255,.28); }

    /* ===== MOBILE NAV ===== */
    @media (max-width: 880px) {
      .nav-toggle { display: block; }
      .main-nav {
        display: none; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: var(--blue-dark);
        box-shadow: var(--shadow-md);
        z-index: 99;
      }
      .main-nav.open { display: flex; }
      .main-nav ul { flex-direction: column; }
      .main-nav a {
        height: auto; padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,.09);
        border-left: 3px solid transparent; font-size: 1rem;
      }
      .main-nav a.active { border-left-color: #fff; border-bottom-color: rgba(255,255,255,.09); }
      .header-actions { display: none; }
    }
    @media (max-width: 480px) {
      .header-inner { padding: 0 14px; }
    }

    /* ===== BREADCRUMB ===== */
    .breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--border); }
    .breadcrumb {
      max-width: 1160px; margin: 0 auto; padding: 0 20px;
      display: flex; align-items: center; flex-wrap: wrap; gap: 4px 6px;
      min-height: 40px; font-size: .875rem; color: var(--text-muted);
    }
    .breadcrumb a { color: var(--blue); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    /* FIX: sep Р±С‹Р» С†РІРµС‚Р° border (#d4e0ec) РЅР° Р±РµР»РѕРј вЂ” СЃР»РёС€РєРѕРј СЃРІРµС‚Р»С‹Р№ */
    .breadcrumb .sep { color: #9ab0c4; }

    /* ===== PAGE LAYOUT ===== */
    .page-layout {
      max-width: 1160px; margin: 0 auto; padding: 28px 20px 56px;
      display: grid; grid-template-columns: 1fr 296px; gap: 28px;
      align-items: start;
    }
    /* FIX: sidebar Р±С‹Р» order:-1 РЅР° РјРѕР±РёР»Рµ вЂ” РєРѕРЅС‚РµРЅС‚ РІР°Р¶РЅРµРµ РєРѕРЅС‚Р°РєС‚РѕРІ */
    @media (max-width: 880px) {
      .page-layout { grid-template-columns: 1fr; padding: 20px 16px 80px; }
      .sidebar { order: 1; }  /* РїРѕСЃР»Рµ РѕСЃРЅРѕРІРЅРѕРіРѕ РєРѕРЅС‚РµРЅС‚Р° */
    }
    @media (max-width: 480px) {
      .page-layout { padding: 14px 12px 80px; gap: 16px; }
    }

    /* ===== PAGE TITLE ===== */
    .page-title {
      font-family: 'PT Serif', serif;
      font-size: 1.75rem; font-weight: 700;
      color: var(--blue-dark); margin-bottom: 5px; line-height: 1.3;
    }
    /* FIX: lead Р±С‹Р» text-muted СЃР»РёС€РєРѕРј Р±Р»С‘РєР»С‹Р№ */
    .page-lead { font-size: .9375rem; color: var(--text-muted); margin-bottom: 22px; }
    @media (max-width: 480px) { .page-title { font-size: 1.375rem; } }

    /* ===== ACCORDION LVL 1 ===== */
    .acc-list { display: flex; flex-direction: column; gap: 7px; }

    details.acc {
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--bg-white);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      /* FIX: РґРѕР±Р°РІР»СЏРµРј Р»РµРІСѓСЋ РїРѕР»РѕСЃРєСѓ РїСЂРё РѕС‚РєСЂС‹С‚РёРё */
      border-left: 3px solid transparent;
      transition: border-color .15s;
    }
    details.acc[open] { border-left-color: var(--blue); }

    details.acc > summary {
      display: flex; align-items: center; gap: 12px;
      /* FIX: Р±РѕР»СЊС€РёР№ padding РґР»СЏ tap-target РЅР° РјРѕР±РёР»Рµ */
      padding: 15px 16px 15px 14px;
      cursor: pointer; list-style: none; user-select: none;
      font-size: 1rem; font-weight: 700; color: var(--text);
      transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 52px; /* РјРёРЅРёРјР°Р»СЊРЅР°СЏ РІС‹СЃРѕС‚Р° РґР»СЏ РєР°СЃР°РЅРёСЏ */
    }
    details.acc > summary::-webkit-details-marker,
    details.acc > summary::marker { display: none; }
    details.acc > summary:hover { background: var(--blue-light); }
    details.acc[open] > summary {
      background: var(--blue-light);
      color: var(--blue-dark);
      border-bottom: 1px solid var(--blue-mid);
    }

    .acc-badge {
      min-width: 28px; height: 28px; border-radius: 6px;
      background: var(--bg-white);
      color: var(--blue);
      border: 2px solid var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: .8125rem; font-weight: 700; flex-shrink: 0;
      transition: background .15s, color .15s, border-color .15s;
    }
    details.acc[open] > summary .acc-badge {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
    }

    .acc-title { flex: 1; line-height: 1.4; }

    .acc-arrow {
      flex-shrink: 0; color: var(--text-light);
      transition: transform .22s ease, color .15s;
    }
    details.acc[open] > summary .acc-arrow { transform: rotate(180deg); color: var(--blue); }

    .acc-body { padding: 16px 18px 20px; }

    /* FIX: РїР»Р°РІРЅРѕРµ РїРѕСЏРІР»РµРЅРёРµ С‚РµР»Р° Р°РєРєРѕСЂРґРµРѕРЅР° */
    .acc-body, .acc2-body { animation: fadeSlide .18s ease; }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-5px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 480px) {
      details.acc > summary { padding: 13px 12px 13px 10px; font-size: .9375rem; gap: 10px; }
      .acc-body { padding: 12px 14px 16px; }
    }

    /* ===== ACCORDION LVL 2 ===== */
    .acc2-list { display: flex; flex-direction: column; gap: 5px; }

    details.acc2 {
      border-radius: 6px;
      border: 1px solid var(--border);
      /* FIX: РґРѕР±Р°РІР»СЏРµРј Р»РµРІСѓСЋ РїРѕР»РѕСЃРєСѓ вЂ” СЏРІРЅР°СЏ РІР»РѕР¶РµРЅРЅРѕСЃС‚СЊ */
      border-left: 3px solid #bcd5ee;
      background: #f7fafe;
      overflow: hidden;
      transition: border-left-color .15s;
    }
    details.acc2[open] { border-left-color: var(--blue); }

    details.acc2 > summary {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px 12px 12px;
      cursor: pointer; list-style: none; user-select: none;
      font-size: .9375rem; font-weight: 700; color: var(--text);
      transition: background .15s;
      -webkit-tap-highlight-color: transparent;
      min-height: 48px;
    }
    details.acc2 > summary::-webkit-details-marker,
    details.acc2 > summary::marker { display: none; }
    details.acc2 > summary:hover { background: var(--blue-light); }
    details.acc2[open] > summary {
      background: #dbeaf7;
      color: var(--blue-dark);
      border-bottom: 1px solid var(--blue-mid);
    }

    /* FIX: acc2-dot Р±С‹Р» СЃР»РёС€РєРѕРј СЃРІРµС‚Р»С‹Р№ (#b0c8e0) вЂ” РїР»РѕС…РѕР№ РєРѕРЅС‚СЂР°СЃС‚ */
    .acc2-dot {
      width: 9px; height: 9px; border-radius: 50%;
      background: #6e92b0; flex-shrink: 0;
      transition: background .15s, transform .15s;
    }
    details.acc2[open] > summary .acc2-dot {
      background: var(--blue);
      transform: scale(1.2);
    }

    .acc2-arrow {
      flex-shrink: 0; color: var(--text-light);
      transition: transform .22s ease, color .15s;
    }
    details.acc2[open] > summary .acc2-arrow { transform: rotate(180deg); color: var(--blue); }

    .acc2-body {
      padding: 14px 16px 18px;
      /* FIX: font-size Р±С‹Р» .9375rem, РґРµР»Р°РµРј СЏРІРЅС‹Рј РґР»СЏ С‡РёС‚Р°РµРјРѕСЃС‚Рё */
      font-size: .9375rem; line-height: 1.75; color: var(--text);
    }

    /* FIX: h4 Р±С‹Р» .875rem вЂ” СЃР»РёС€РєРѕРј РјРµР»РєРёР№ РґР»СЏ Р·Р°РіРѕР»РѕРІРєР° */
    .acc2-body h4 {
      font-size: .9375rem; font-weight: 700; color: var(--blue);
      margin: 14px 0 7px;
      padding-bottom: 4px;
      border-bottom: 1px solid var(--blue-mid);
    }
    .acc2-body h4:first-child { margin-top: 0; }
    .acc2-body p { margin-bottom: 10px; }
    .acc2-body p:last-child { margin-bottom: 0; }
    .acc2-body ul {
      padding-left: 20px;
      display: flex; flex-direction: column; gap: 4px;
      margin-bottom: 14px;
    }
    .acc2-body ul:last-child { margin-bottom: 0; }
    .acc2-body li { font-size: .9375rem; line-height: 1.55; }

    /* ===== DOCUMENTS ===== */
    .doc-list { display: flex; flex-direction: column; gap: 5px; margin-top: 14px; }

    .doc-item {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 14px; border-radius: 6px;
      background: #fff; border: 1px solid var(--border);
      text-decoration: none; color: var(--text);
      font-size: .9375rem;
      transition: background .12s, border-color .12s, color .12s;
      -webkit-tap-highlight-color: transparent;
    }
    .doc-item:hover {
      background: var(--blue-light);
      border-color: #9cc4e8;
      color: var(--blue-dark);
      text-decoration: none;
    }
    .doc-ico {
      width: 34px; height: 34px; border-radius: 5px;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: #fff;
      flex-shrink: 0; letter-spacing: .3px;
    }
    /* FIX: С†РІРµС‚РѕРІР°СЏ РґРёС„С„РµСЂРµРЅС†РёР°С†РёСЏ С‚РёРїРѕРІ С„Р°Р№Р»РѕРІ */
    .doc-ico--pdf  { background: #c0392b; }
    .doc-ico--docx { background: #1e5cb8; }
    .doc-ico--xlsx { background: #1e7e34; }
    .doc-ico--folder { background: #c07800; }
    .doc-name { flex: 1; line-height: 1.4; }
    .doc-meta { font-size: .75rem; color: var(--text-light); white-space: nowrap; padding-left: 8px; }
    /* FIX: meta С‚РѕР¶Рµ РјРµРЅСЏРµС‚ С†РІРµС‚ РїСЂРё hover */
    .doc-item:hover .doc-meta { color: #6b9bc8; }

    /* ===== SIDEBAR ===== */
    .sidebar {
      display: flex; flex-direction: column; gap: 14px;
      /* FIX: sticky вЂ” РєРѕРЅС‚Р°РєС‚С‹ РѕСЃС‚Р°СЋС‚СЃСЏ РІРёРґРЅС‹ РїСЂРё СЃРєСЂРѕР»Р»Рµ */
      position: sticky; top: 80px; align-self: start;
    }
    @media (max-width: 880px) {
      .sidebar { position: static; }
    }

    .s-card {
      background: #fff; border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm); overflow: hidden;
    }
    .s-card-head {
      background: var(--blue); color: #fff;
      padding: 10px 16px;
      font-size: .8125rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .6px;
    }
    .s-card-body { padding: 4px 0; }

    .s-row {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 11px 16px; border-bottom: 1px solid var(--bg);
    }
    .s-row:last-child { border-bottom: none; }
    .s-icon { font-size: 17px; flex-shrink: 0; margin-top: 3px; line-height: 1; }
    .s-label { font-size: .75rem; color: var(--text-light); line-height: 1.2; margin-bottom: 1px; }
    .s-val { font-size: .9375rem; font-weight: 700; color: var(--text); line-height: 1.35; }

    /* FIX: С‚РµР»РµС„РѕРЅС‹ РІ СЃР°Р№РґР±Р°СЂРµ вЂ” РєСЂСѓРїРЅРµРµ, СЏРІРЅР°СЏ Р·РѕРЅР° РєР»РёРєР° */
    .s-phone-link {
      display: block;
      font-size: 1.125rem; font-weight: 700;
      color: var(--text); text-decoration: none;
      letter-spacing: .2px;
      transition: color .12s;
    }
    .s-phone-link:hover { color: var(--blue); text-decoration: none; }

    .sched-table { width: 100%; border-collapse: collapse; }
    .sched-table td {
      padding: 9px 14px; font-size: .875rem;
      border-bottom: 1px solid var(--bg); vertical-align: top;
    }
    .sched-table tr:last-child td { border-bottom: none; }
    .sched-table .t-dept { color: var(--text-muted); }
    .sched-table .t-time { color: var(--text); font-weight: 700; line-height: 1.45; text-align: right; white-space: nowrap; }

    /* Feedback button in sidebar */
    .btn-feedback {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 18px; border-radius: var(--radius);
      background: var(--blue); color: #fff;
      font-size: .9375rem; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer;
      font-family: inherit;
      transition: background .15s, box-shadow .15s;
      -webkit-tap-highlight-color: transparent;
    }
    .btn-feedback:hover {
      background: var(--blue-dark); color: #fff;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(13,63,106,.25);
    }

    /* FIX: РїР»Р°РІР°СЋС‰Р°СЏ РєРЅРѕРїРєР° РѕР±СЂР°С‰РµРЅРёСЏ РЅР° РјРѕР±РёР»Рµ */
    .mobile-cta {
      display: none;
      position: fixed; bottom: 18px; right: 14px; z-index: 50;
      background: var(--blue); color: #fff;
      padding: 13px 20px; border-radius: 28px;
      box-shadow: 0 4px 20px rgba(13,63,106,.35);
      text-decoration: none; font-size: .875rem; font-weight: 700;
      align-items: center; gap: 7px;
      transition: background .15s, box-shadow .15s;
    }
    .mobile-cta:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }
    @media (max-width: 880px) {
      .mobile-cta { display: flex; }
    }

    /* ===== FOOTER ===== */
    .site-footer { background: var(--blue-deep); color: #fff; }

    .footer-main {
      max-width: 1160px; margin: 0 auto; padding: 40px 20px 32px;
      display: grid;
      grid-template-columns: 1.05fr 1.1fr 1.3fr 1.1fr;
      gap: 36px;
    }
    @media (max-width: 920px) {
      .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
    }
    @media (max-width: 540px) {
      .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 28px 16px 24px; }
    }

    .f-col-title {
      font-size: .75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .7px;
      /* FIX: Р±С‹Р»Рѕ .45 вЂ” СЃР»РёС€РєРѕРј СЃРІРµС‚Р»С‹Р№, С‚РµРїРµСЂСЊ .65 */
      color: rgba(255,255,255,.65);
      margin-bottom: 14px; padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .footer-logo-img {
      height: 50px; width: auto; max-width: 124px;
      display: block; object-fit: contain;
    }
    .footer-emblem {
      width: 42px; height: 42px; border-radius: 4px;
      background: rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center; font-size: 22px;
    }
    .footer-name {
      font-family: 'PT Serif', serif;
      font-size: 1rem; font-weight: 700; line-height: 1.25; color: #fff;
    }
    /* FIX: copyright Р±С‹Р» .4 вЂ” РЅРµ РїСЂРѕС…РѕРґРёС‚ WCAG AA */
    .footer-copy { font-size: .8125rem; color: rgba(255,255,255,.62); line-height: 1.7; }

    .f-addr { font-size: .9375rem; color: rgba(255,255,255,.9); line-height: 1.65; margin-bottom: 10px; }
    .f-addr strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 2px; }
    .f-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .875rem; color: #8ac8f0; text-decoration: none;
    }
    .f-link:hover { color: #b0daf8; text-decoration: underline; }

    .f-sched { display: flex; flex-direction: column; }
    .f-sched-row {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08);
      gap: 10px;
    }
    .f-sched-row:last-child { border-bottom: none; }
    /* FIX: dept Р±С‹Р» .6 вЂ” С‚РµРїРµСЂСЊ .75 РґР»СЏ С‡РёС‚Р°РµРјРѕСЃС‚Рё */
    .f-sched-dept { font-size: .875rem; color: rgba(255,255,255,.75); }
    .f-sched-time { font-size: .8125rem; color: #fff; font-weight: 700; text-align: right; line-height: 1.55; }

    .f-phones { display: flex; flex-direction: column; }
    .f-phone-row { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .f-phone-row:last-child { border-bottom: none; }
    /* FIX: dept Р±С‹Р» .5 вЂ” С‚РµРїРµСЂСЊ .7 */
    .f-phone-dept { font-size: .8125rem; color: rgba(255,255,255,.7); margin-bottom: 2px; }
    .f-phone-num {
      font-size: 1.125rem; font-weight: 700; color: #fff;
      text-decoration: none; letter-spacing: .3px;
      transition: color .12s;
    }
    .f-phone-num:hover { color: #8ac8f0; text-decoration: none; }

    /* Footer bottom */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.18);
    }
    .footer-bottom-inner {
      max-width: 1160px; margin: 0 auto; padding: 14px 20px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; flex-wrap: wrap;
    }
    .f-bottom-links { display: flex; flex-wrap: wrap; gap: 5px 18px; }
    /* FIX: СЃСЃС‹Р»РєРё Р±С‹Р»Рё .4 вЂ” С‚РµРїРµСЂСЊ .55 */
    .f-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.55); text-decoration: none; }
    .f-bottom-links a:hover { color: rgba(255,255,255,.85); }
    /* FIX: copy Р±С‹Р»Рѕ .25 вЂ” С‚РµРїРµСЂСЊ .45 */
    .f-bottom-copy { font-size: .8125rem; color: rgba(255,255,255,.45); }

    @media (max-width: 540px) {
      .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    }

    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

    /* ===== LEVEL-1 SECTION TEXT ===== */
    .acc-section-text {
      font-size: .9375rem; line-height: 1.75; color: var(--text);
    }
    .acc-section-text p { margin-bottom: 10px; }
    .acc-section-text p:last-child { margin-bottom: 0; }
    .acc-section-text ul {
      padding-left: 20px; display: flex; flex-direction: column; gap: 4px;
      margin: 8px 0 10px;
    }
    .acc-section-text li { line-height: 1.55; }
    .acc2-inner { margin: 0; padding: 0; }
    .acc2-inner h4 {
      font-size: .9375rem; font-weight: 700; color: var(--blue);
      margin: 14px 0 7px; padding-bottom: 4px;
      border-bottom: 1px solid var(--blue-mid);
    }
    .acc2-inner h4:first-child { margin-top: 0; }

    /* ===== MARKDOWN / HOME ===== */
    .page-body { font-size: .9375rem; line-height: 1.75; color: var(--text); }
    .page-body h2, .page-body h3 { font-family: 'PT Serif', serif; color: var(--blue-dark); margin: 1.25em 0 .5em; }
    .page-body p { margin-bottom: .75em; }
    .page-body ul { padding-left: 1.25em; margin-bottom: .75em; }
    .page-body a { color: var(--blue); }

    .home-intro {
      background: var(--bg-white); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
    }
    .home-intro .page-title { margin-bottom: 12px; }

    /* ===== COUNCIL (MO) ===== */
    .council-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
      gap: 1rem 1.25rem;
      margin: 0.25rem 0 0.5rem;
    }
    @media (min-width: 720px) {
      .council-grid { grid-template-columns: repeat(3, 1fr); }
      .council-card--featured {
        grid-column: span 3;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        align-items: center;
        max-width: 36rem;
      }
    }
    .council-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.65rem;
    }
    .council-card--featured .council-card-text { text-align: left; }
    @media (min-width: 720px) {
      .council-card--featured { flex-direction: row; text-align: left; align-items: center; }
    }
    .council-photo-btn {
      padding: 0;
      border: none;
      background: none;
      cursor: zoom-in;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      line-height: 0;
      transition: box-shadow .15s, transform .15s;
    }
    .council-photo-btn:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
    .council-photo-btn:focus-visible {
      outline: 3px solid var(--blue);
      outline-offset: 2px;
    }
    .council-photo {
      display: block;
      width: 5.5rem;
      height: 6.75rem;
      object-fit: cover;
      object-position: top center;
    }
    .council-card--featured .council-photo {
      width: 6.5rem;
      height: 8rem;
    }
    @media (min-width: 720px) {
      .council-card--featured .council-photo {
        width: 7.5rem;
        height: 9rem;
      }
    }
    .council-name {
      font-family: 'PT Serif', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1.3;
      margin: 0;
    }
    .council-role {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 0;
    }

    /* ===== PHOTO LIGHTBOX ===== */
    .photo-lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      background: rgba(7, 29, 50, 0.92);
    }
    .photo-lightbox[hidden] { display: none !important; }
    .photo-lightbox__img {
      max-width: min(92vw, 520px);
      max-height: 85vh;
      width: auto;
      height: auto;
      border-radius: var(--radius);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    }
    .photo-lightbox__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2.75rem;
      height: 2.75rem;
      border: none;
      border-radius: 50%;
      background: #fff;
      color: var(--blue-dark);
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
      font-weight: 700;
    }
    .photo-lightbox__close:hover { background: var(--blue-light); }
    .photo-lightbox__close:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 2px;
    }

    /* ===== IMAGES IN SECTIONS ===== */
    .acc-images {
      display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0 4px;
    }
    .acc-images figure { margin: 0; max-width: 100%; flex: 1 1 220px; }
    .acc-images img {
      width: 100%; height: auto; border-radius: 6px;
      border: 1px solid var(--border);
    }
    .acc-images figcaption {
      font-size: .8125rem; color: var(--text-muted); margin-top: 6px; line-height: 1.4;
    }

    /* ===== HOME BANNER ===== */
    .home-banner {
      margin-bottom: 24px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }
    .home-banner__link { display: block; line-height: 0; }
    .home-banner__img {
      width: 100%;
      height: auto;
      aspect-ratio: 1160 / 400;
      object-fit: cover;
      display: block;
    }

    /* ===== NEWS ===== */
    .home-intro-text { margin-top: 20px; }

    .home-news {
      margin: 22px 0 8px;
      padding: 22px 22px 18px;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }
    .home-news__head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .home-news__title {
      font-family: 'PT Serif', serif;
      font-size: 1.375rem;
      color: var(--blue-dark);
      margin: 0;
    }
    .home-news__all {
      font-size: .9375rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
    }
    .home-news__all:hover { text-decoration: underline; }

    .news-list { display: flex; flex-direction: column; gap: 0; }
    .news-card {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .news-card:last-child { border-bottom: none; padding-bottom: 0; }
    .news-card__date {
      display: block;
      font-size: .8125rem;
      color: var(--text-light);
      margin-bottom: 4px;
    }
    .news-card__title {
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 6px;
      line-height: 1.35;
    }
    .news-card__title a {
      color: var(--text);
      text-decoration: none;
    }
    .news-card__title a:hover { color: var(--blue); text-decoration: underline; }
    .news-card__excerpt {
      margin: 0;
      font-size: .9375rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .news-empty { color: var(--text-muted); }

    .news-item__back { margin-bottom: 12px; font-size: .9375rem; }
    .news-item__date {
      display: block;
      font-size: .875rem;
      color: var(--text-light);
      margin-bottom: 8px;
    }
    .news-item__title { margin-bottom: 16px; }
    .news-item__lead {
      font-size: 1.0625rem;
      color: var(--text-muted);
      margin-bottom: 18px;
      line-height: 1.55;
    }
    .news-item__figure { margin: 0 0 20px; }
    .news-item__img {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .news-item__body { margin-top: 8px; }

    .pagination { margin-top: 28px; }
    .pagination__list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
    }
    .pagination__link,
    .pagination__current {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      min-height: 40px;
      padding: 0 12px;
      border-radius: 6px;
      font-size: .9375rem;
      font-weight: 700;
      text-decoration: none;
    }
    .pagination__link {
      border: 1px solid var(--border);
      background: var(--bg-white);
      color: var(--blue);
    }
    .pagination__link:hover { background: var(--blue-light); }
    .pagination__current {
      background: var(--blue);
      color: #fff;
    }
    .pagination__gap { padding: 0 4px; color: var(--text-light); }

    /* ===== ERROR PAGE ===== */
    #error-page { padding: 48px 20px; text-align: center; max-width: 560px; margin: 0 auto; }
    #error-page h1 { font-family: 'PT Serif', serif; color: var(--blue-dark); margin-bottom: 12px; }
