@font-face { font-family: "Satoshi"; src: url("../uploads/Satoshi-Regular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("../uploads/Satoshi-Medium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("../uploads/Satoshi-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("../uploads/Satoshi-Black.otf") format("opentype"); font-weight: 900; font-display: swap; }

:root {
    --ink: #111019;
    --ink-2: #25222d;
    --text: #191720;
    --text-soft: #625d6c;
    --text-mute: #8d8795;
    --paper: #fbfaf7;
    --paper-2: #f3f0ea;
    --panel: #fff;
    --purple: #6f4df6;
    --purple-deep: #5538c9;
    --purple-soft: #f0ecff;
    --green: #157a6e;
    --border: rgba(17, 16, 25, 0.11);
    --border-strong: rgba(17, 16, 25, 0.18);
    --shadow: 0 18px 48px rgba(17, 16, 25, 0.09);
    --max: 1180px;
    --nav: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.help-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; -webkit-tap-highlight-color: transparent; }
::selection { background: var(--ink); color: #fff; }

.help-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: calc(var(--nav) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid var(--border);
}
.help-nav-inner {
    max-width: var(--max);
    min-height: var(--nav);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}
.help-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    text-decoration: none;
    min-width: 0;
}
.help-brand img { width: 122px; height: auto; }
.help-brand-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 10px;
    color: var(--purple-deep);
    background: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}
.help-nav-links {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 4px;
}
.help-nav-links a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.help-nav-links a:hover { background: rgba(17, 16, 25, 0.055); color: var(--purple-deep); }
.help-nav-cta {
    background: var(--ink) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    font-weight: 900 !important;
}
.help-nav-cta:hover { background: var(--purple-deep) !important; box-shadow: none !important; transform: none !important; }
.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--paper);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}
.menu-btn span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.24s var(--ease), opacity 0.2s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; display: none; }
.menu-btn.open span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.help-hero {
    position: relative;
    overflow: hidden;
    background: var(--paper-2) !important;
    color: var(--ink);
    padding: clamp(64px, 9vw, 116px) 24px clamp(56px, 8vw, 96px) !important;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.help-hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -34% auto;
    width: min(720px, 82vw);
    height: min(420px, 42vw);
    background: linear-gradient(135deg, rgba(111, 77, 246, 0.14), rgba(21, 122, 110, 0.10));
    border: 1px solid rgba(17,16,25,0.05);
    border-radius: 10px;
    transform: rotate(-4deg);
}
.help-hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.help-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
}
.help-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
}
.help-search {
    max-width: 680px;
    margin: 34px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.help-search svg { flex: 0 0 auto; color: var(--text-mute); }
.help-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 17px;
}
.help-search input::placeholder { color: var(--text-mute); }
#searchResults {
    max-width: 680px !important;
    margin: 12px 0 0 !important;
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow) !important;
}
#searchResults a {
    padding: 15px 18px !important;
    color: var(--ink) !important;
    border-bottom: 1px solid var(--border) !important;
}

.help-section {
    padding: clamp(62px, 8vw, 96px) 24px !important;
    background: var(--paper);
}
.help-section[style*="background"] { background: var(--paper-2) !important; }
.help-section-inner {
    max-width: var(--max);
    margin: 0 auto;
}
.help-section-head {
    text-align: left !important;
    margin-bottom: 34px !important;
}
.help-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--purple-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.help-section-head h2 {
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}
.help-section-head p {
    max-width: 620px;
    margin: 12px 0 0 !important;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.cat-card {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    padding: 24px !important;
    color: inherit;
    text-decoration: none;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px !important;
    box-shadow: 0 1px 0 rgba(17,16,25,0.02);
    transition: transform 0.24s var(--ease), border-color 0.2s ease, box-shadow 0.24s ease;
}
.cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--ink);
    box-shadow: var(--shadow);
}
.cat-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--purple-soft);
    color: var(--purple-deep);
    font-size: 0 !important;
}
.cat-card-icon::before {
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 5px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
}
.cat-card h3 {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
}
.cat-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.58;
}
.cat-card-count {
    display: inline-block;
    margin-top: auto;
    padding-top: 18px;
    color: var(--purple-deep);
    font-size: 13.5px;
    font-weight: 900;
}
@media (min-width: 760px) {
    .cat-card-full { grid-column: 1 / -1; }
}
.no-results {
    display: none;
    padding: 52px 20px;
    color: var(--text-mute);
    text-align: center;
    font-size: 16px;
}
.no-results.show { display: block; }

.doc-layout {
    max-width: var(--max);
    margin: 0 auto;
    padding: 40px 24px 72px;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 210px;
    gap: clamp(28px, 4vw, 52px);
}
.doc-sidebar,
.doc-toc {
    position: sticky;
    top: calc(var(--nav) + 24px);
    align-self: start;
    max-height: calc(100vh - var(--nav) - 48px);
    overflow: auto;
}
.doc-sidebar-title,
.doc-toc-title {
    margin-bottom: 13px;
    color: var(--text-mute);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.doc-sidebar a,
.doc-toc a {
    display: block;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.28;
    border-radius: 7px;
    transition: background 0.2s ease, color 0.2s ease;
}
.doc-sidebar a { padding: 9px 10px; }
.doc-toc a {
    padding: 7px 0 7px 12px;
    border-left: 2px solid var(--border);
    border-radius: 0;
    font-size: 13px;
}
.doc-sidebar a:hover,
.doc-sidebar a.active {
    background: var(--purple-soft);
    color: var(--purple-deep);
}
.doc-toc a:hover,
.doc-toc a.active {
    color: var(--purple-deep);
    border-left-color: var(--purple-deep);
}
.doc-main { min-width: 0; }
.doc-crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-mute);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}
.doc-crumbs a {
    color: var(--text-mute);
    text-decoration: none;
}
.doc-crumbs a:hover { color: var(--purple-deep); }
.doc-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.doc-header-text { min-width: 0; }
.doc-header h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}
.doc-header-sub {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 17px;
}
.doc-print-btn {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}
.doc-content {
    max-width: 760px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.74;
}
.doc-content h2 {
    scroll-margin-top: 98px;
    margin: 48px 0 12px;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}
.doc-content h2:first-child { margin-top: 0; }
.doc-content h3 {
    scroll-margin-top: 98px;
    margin: 30px 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}
.doc-content p { margin: 0 0 17px; color: var(--text-soft); }
.doc-content strong { color: var(--ink); font-weight: 900; }
.doc-content a { color: var(--purple-deep); font-weight: 800; }
.doc-content ul,
.doc-content ol {
    margin: 0 0 18px 22px;
    color: var(--text-soft);
}
.doc-content li { margin-bottom: 9px; }
.doc-content code {
    border-radius: 5px;
    background: var(--purple-soft);
    color: var(--purple-deep);
    padding: 2px 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92em;
}
.doc-content blockquote,
.doc-content .callout {
    margin: 22px 0;
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--purple);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
}
.doc-content .callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.doc-content .callout p { margin: 0; color: var(--text); }
.doc-content .callout-icon { color: var(--purple-deep); flex: 0 0 auto; }
.doc-content hr {
    margin: 36px 0;
    border: 0;
    border-top: 1px solid var(--border);
}
.doc-content .step-list {
    counter-reset: step;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.doc-content .step-list > li {
    counter-increment: step;
    position: relative;
    padding-left: 42px;
}
.doc-content .step-list > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}
.doc-mobile-controls { display: none; }
.doc-mobile-controls details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.doc-mobile-controls summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 16px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.doc-mobile-controls summary::-webkit-details-marker { display: none; }
.doc-mobile-controls summary::after {
    content: "+";
    color: var(--purple-deep);
    font-size: 18px;
    line-height: 1;
}
.doc-mobile-controls details[open] summary::after { content: "-"; }
.doc-mobile-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0 10px 10px;
}
.doc-mobile-links a {
    color: var(--text-soft);
    text-decoration: none;
    padding: 10px 8px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.3;
}
.doc-mobile-links a.active,
.doc-mobile-links a:hover {
    background: var(--purple-soft);
    color: var(--purple-deep);
}

.doc-foot {
    max-width: 760px;
    margin-top: 58px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.doc-foot-link {
    display: block;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    transition: transform 0.24s var(--ease), border-color 0.2s ease;
}
.doc-foot-link:hover { transform: translateY(-2px); border-color: var(--ink); }
.doc-foot-link.next { text-align: right; }
.doc-foot-link .small {
    display: block;
    color: var(--text-mute);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}
.doc-foot-link .big {
    display: block;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}
.doc-foot-link.disabled { opacity: 0.45; pointer-events: none; }

.faq-list { display: grid; gap: 12px; }
.faq-group { margin-bottom: 48px !important; }
.faq-group > h2 {
    color: var(--ink) !important;
    font-size: 25px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}
.faq-group > h2 span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    background: var(--purple-soft) !important;
    color: var(--purple-deep) !important;
    font-size: 0 !important;
}
.faq-group > h2 span::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 5px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
}
.faq-item {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
}
.faq-item[open] { border-color: var(--purple-deep) !important; box-shadow: var(--shadow) !important; }
.faq-item summary {
    min-height: 58px;
    padding: 18px 20px !important;
    color: var(--ink);
    font-weight: 900 !important;
    font-size: 16px !important;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--purple-deep) !important; font-weight: 900; }
.faq-item > div {
    padding: 0 20px 20px !important;
    color: var(--text-soft) !important;
    font-size: 15.5px !important;
}

.help-footer {
    margin-top: 0 !important;
    padding: 54px 24px max(24px, env(safe-area-inset-bottom));
    background: var(--ink);
    color: #fff;
}
.help-footer-inner,
.help-footer-bottom {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}
.help-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
    gap: 34px;
}
.help-footer-logo { width: 122px; height: auto; margin-bottom: 12px; }
.help-footer-col h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.help-footer-col p,
.help-footer-col a {
    display: block;
    color: rgba(255,255,255,0.62) !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.9;
}
.help-footer-col a:hover { color: #fff !important; }
.help-footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.45);
}
.help-footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; }
.help-footer-jfeld { display: inline-flex; align-items: center; gap: 8px; }
.help-footer-jfeld span { color: rgba(255,255,255,0.45); font-size: 13px; }
.help-footer-jfeld img { height: 16px; opacity: 0.72; }

@media (max-width: 1080px) {
    .doc-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }
    .doc-toc { display: none; }
}

@media (max-width: 820px) {
    :root { --nav: 66px; }
    html { scroll-padding-top: 78px; }
    .help-nav-inner {
        padding: 0 18px;
        grid-template-columns: auto 1fr auto;
    }
    .help-brand-tag { display: none; }
    .help-brand img { width: 112px; }
    .menu-btn { display: flex; grid-column: 3; }
    .help-nav-links {
        position: fixed !important;
        top: calc(var(--nav) + env(safe-area-inset-top)) !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 999;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 26px 22px max(26px, env(safe-area-inset-bottom));
        background: var(--paper);
        border-top: 1px solid var(--border);
        box-shadow: none;
    }
    .help-nav-links.mobile-open { display: flex; }
    .help-nav-links a {
        padding: 18px 0 !important;
        border-bottom: 1px solid var(--border) !important;
        border-radius: 0 !important;
        color: var(--ink) !important;
        font-size: clamp(22px, 6.6vw, 32px) !important;
        line-height: 1.05;
        font-weight: 900;
    }
    .help-nav-links .help-nav-cta {
        margin-top: auto;
        border-bottom: 0 !important;
        text-align: center;
        border-radius: 8px !important;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px !important;
    }
    .help-hero { padding: 56px 18px 64px !important; }
    .help-hero::before { opacity: 0.55; width: 82vw; height: 280px; }
    .help-search { min-height: 56px; margin-top: 28px; padding: 0 14px; }
    .help-search input { font-size: 16px; }
    .help-section { padding: 58px 18px !important; }
    .cat-grid { grid-template-columns: 1fr; gap: 12px; }
    .cat-card { min-height: 0; }

    .doc-layout {
        display: block;
        padding: 24px 18px 62px;
    }
    .doc-sidebar,
    .doc-toc { display: none; }
    .doc-mobile-controls {
        display: grid;
        gap: 10px;
        margin-bottom: 22px;
    }
    .doc-header {
        display: block;
        padding-bottom: 22px;
        margin-bottom: 26px;
    }
    .doc-header h1 { font-size: clamp(34px, 10vw, 48px); }
    .doc-print-btn {
        width: 100%;
        margin-top: 18px;
    }
    .doc-content {
        max-width: none;
        font-size: 16px;
        line-height: 1.72;
    }
    .doc-content h2 { margin-top: 38px; }
    .doc-foot {
        max-width: none;
        grid-template-columns: 1fr;
    }
    .doc-foot-link.next { text-align: left; }
    .help-footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .help-hero h1 { font-size: 42px; }
    .help-section-head h2 { font-size: 32px; }
    .help-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@media print {
    .help-nav, .help-footer, .doc-sidebar, .doc-toc, .doc-mobile-controls, .doc-print-btn, .doc-crumbs, .doc-foot, .menu-btn {
        display: none !important;
    }
    body { background: #fff; }
    .doc-layout {
        display: block;
        max-width: none;
        padding: 0;
    }
    .doc-header {
        border-bottom: 2px solid var(--purple);
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    .doc-header h1 { color: var(--purple); font-size: 28pt; }
    .doc-content { max-width: none; font-size: 12pt; line-height: 1.55; }
    .doc-content h2 { font-size: 18pt; margin-top: 24px; page-break-after: avoid; }
    .doc-content h3 { font-size: 13pt; page-break-after: avoid; }
    .doc-content p, .doc-content li { color: #000; }
    .print-header, .print-footer { display: block !important; }
    body::after { display: none !important; }
    @page { margin: 0.6in 0.5in 0.7in 0.5in; }
}

.print-header, .print-footer { display: none; }
@media print {
    .print-header {
        text-align: center;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid #ccc;
    }
    .print-header img { height: 32px; margin: 0 auto; }
    .print-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 9pt;
        color: #777;
        padding: 8px 0;
        border-top: 1px solid #ddd;
    }
}
