.df-public-page {
    --df-public-border: rgba(38, 45, 56, 0.12);
    --df-public-muted: #626b79;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
}

.df-public-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0;
    color: var(--df-public-muted);
    font-size: 0.82rem;
    font-weight: 600;
    list-style: none;
}

.df-public-breadcrumb a {
    color: #4a5564;
    text-decoration: none;
}

.df-public-breadcrumb a:hover {
    color: #805b17;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.df-public-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.8rem);
    color: #fff;
    background: linear-gradient(125deg, rgba(190, 138, 44, 0.22), transparent 42%),
                linear-gradient(135deg, #171c25 0%, #2c3648 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 22px 55px rgba(31, 41, 55, 0.16);
}

.df-public-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -11rem;
    right: -7rem;
    width: 20rem;
    height: 20rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 3.5rem rgba(255, 255, 255, 0.025), 0 0 0 7rem rgba(255, 255, 255, 0.018);
}

.df-public-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
    padding: 0.45rem 0.75rem;
    color: #f6d99d;
    background: rgba(190, 138, 44, 0.14);
    border: 1px solid rgba(246, 217, 157, 0.26);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-public-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.15rem, 5vw, 3.6rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.df-public-hero__summary {
    max-width: 720px;
    margin: 1.25rem 0 0;
    color: #e5e7eb;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.75;
}

.df-public-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1.65rem;
    color: #d6dae1;
    font-size: 0.82rem;
}

.df-public-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.df-public-layout {
    display: grid;
    grid-template-columns: minmax(215px, 260px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: start;
    margin-top: 2rem;
}

.df-public-toc {
    position: sticky;
    top: 1.25rem;
    max-height: calc(100vh - 2.5rem);
    overflow-y: auto;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--df-public-border);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06);
    backdrop-filter: blur(12px);
}

.df-public-toc__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #202938;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.df-public-toc__details[open] .df-public-toc__title {
    margin-bottom: 0.85rem;
}

.df-public-toc__title::marker {
    color: #a6751d;
}

.df-public-toc ol {
    display: grid;
    gap: 0.18rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.df-public-toc a {
    display: block;
    padding: 0.42rem 0.55rem;
    color: #535d6c;
    border-left: 2px solid transparent;
    border-radius: 0 0.4rem 0.4rem 0;
    font-size: 0.8rem;
    line-height: 1.35;
    text-decoration: none;
}

.df-public-toc a:hover,
.df-public-toc a:focus-visible {
    color: #694a13;
    background: rgba(190, 138, 44, 0.1);
    border-left-color: #be8a2c;
}

.df-public-article {
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 3.4rem);
    color: #384152;
    background: #fff;
    border: 1px solid var(--df-public-border);
    border-radius: 1.25rem;
    box-shadow: 0 18px 48px rgba(31, 41, 55, 0.08);
}

.df-public-article > section {
    scroll-margin-top: 1.5rem;
}

.df-public-article > section + section {
    margin-top: 2.35rem;
    padding-top: 2.35rem;
    border-top: 1px solid #e5e7eb;
}

.df-public-article h2 {
    margin: 0 0 1rem;
    color: #202938;
    font-size: clamp(1.28rem, 3vw, 1.62rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.df-public-article h3 {
    margin: 1.6rem 0 0.65rem;
    color: #2c3544;
    font-size: 1rem;
    font-weight: 600;
}

.df-public-article p,
.df-public-article li {
    font-size: 0.95rem;
    line-height: 1.8;
}

.df-public-article p {
    margin-bottom: 1rem;
}

.df-public-article ul {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.25rem;
}

.df-public-article li::marker {
    color: #a6751d;
}

.df-public-article a {
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.df-legal-callout {
    margin: 1.35rem 0;
    padding: 1.15rem 1.25rem;
    background: #f7f4ed;
    border: 1px solid #eadfc9;
    border-left: 4px solid #be8a2c;
    border-radius: 0.75rem;
}

.df-legal-callout--important {
    background: #f7f7f8;
    border-color: #e0e3e8;
    border-left-color: #465266;
}

.df-legal-callout--important p {
    font-size: 0.86rem;
    line-height: 1.75;
}

#purpose > p:nth-of-type(2) {
    margin: 1.35rem 0;
    padding: 1.15rem 1.25rem;
    background: #f7f4ed;
    border: 1px solid #eadfc9;
    border-left: 4px solid #be8a2c;
    border-radius: 0.75rem;
}

#disclaimer > p,
#liability > p {
    padding: 1.15rem 1.25rem;
    background: #f7f7f8;
    border: 1px solid #e0e3e8;
    border-left: 4px solid #465266;
    border-radius: 0.75rem;
    font-size: 0.86rem;
    line-height: 1.75;
}

.df-responsive-table {
    width: 100%;
    margin: 1.35rem 0;
    overflow-x: auto;
    border: 1px solid #e1e4e8;
    border-radius: 0.75rem;
}

.df-responsive-table table {
    width: 100%;
    min-width: 820px;
    margin: 0;
    border-collapse: collapse;
}

.df-responsive-table th,
.df-responsive-table td {
    padding: 0.9rem;
    border-right: 1px solid #e7e9ed;
    border-bottom: 1px solid #e7e9ed;
    font-size: 0.76rem;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.df-responsive-table th {
    color: #242c38;
    background: #f1f2f4;
    font-weight: 600;
}

.df-responsive-table tr:last-child td {
    border-bottom: 0;
}

.df-responsive-table th:last-child,
.df-responsive-table td:last-child {
    border-right: 0;
}

.df-public-contact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.25rem;
    padding: 1.25rem;
    color: #fff;
    background: #232c3a;
    border-radius: 0.9rem;
}

.df-public-contact p {
    margin: 0;
    color: #dfe3e8;
}

.df-public-contact__actions,
.df-help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.df-public-contact .btn,
.df-help-links .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    font-size: 0.82rem;
    font-weight: 600;
}

.df-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    color: #5b4720;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

#how-we-use > p:not(:first-of-type) {
    position: relative;
    margin-bottom: 0.65rem;
    padding-left: 1.2rem;
}

#how-we-use > p:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    background: #be8a2c;
    border-radius: 50%;
}

.df-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(285px, 0.85fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-top: 2rem;
}

.df-help-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    background: #fff;
    border: 1px solid var(--df-public-border);
    border-radius: 1.1rem;
    box-shadow: 0 14px 38px rgba(31, 41, 55, 0.07);
}

.df-help-card h2 {
    margin: 0 0 0.55rem;
    color: #202938;
    font-size: 1.35rem;
    font-weight: 600;
}

.df-help-card > p {
    color: var(--df-public-muted);
    line-height: 1.7;
}

.df-support-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.df-support-option {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.1rem;
    color: #313b49;
    background: #f7f7f8;
    border: 1px solid #e1e4e8;
    border-radius: 0.8rem;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.df-support-option:hover {
    color: #313b49;
    border-color: #c49a4b;
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
    transform: translateY(-2px);
}

.df-support-option__icon {
    display: grid;
    flex: 0 0 auto;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    color: #704e10;
    background: #ead4aa;
    border-radius: 0.7rem;
    font-size: 1.05rem;
}

.df-support-option strong,
.df-support-option span {
    display: block;
}

.df-support-option strong {
    margin-bottom: 0.25rem;
}

.df-support-option span {
    color: var(--df-public-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.df-help-checklist {
    display: grid;
    gap: 0.8rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.df-help-checklist li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: #485261;
    font-size: 0.88rem;
    line-height: 1.5;
}

.df-help-checklist i {
    margin-top: 0.15rem;
    color: #91681f;
}

.df-help-response {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-top: 1.25rem;
    padding: 1.05rem;
    color: #374151;
    background: #f7f4ed;
    border: 1px solid #eadfc9;
    border-radius: 0.8rem;
}

.df-help-response > i {
    color: #91681f;
    font-size: 1.15rem;
}

.df-help-response p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.6;
}

.df-help-secure-request {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e1e4e8;
}

.df-help-secure-request h3 {
    margin-bottom: .75rem;
    font-size: 1.05rem;
}

.df-help-links {
    margin-top: 1.25rem;
}

.df-help-glossary {
    margin-top: 2rem;
}

.df-help-glossary dl {
    margin-top: 1.25rem;
}

.df-help-glossary dt,
.df-help-glossary dd {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.88rem;
    line-height: 1.65;
}

.df-help-glossary dt {
    color: #273142;
    font-weight: 600;
}

.df-help-glossary dd {
    margin-bottom: 0;
    color: var(--df-public-muted);
}

.df-help-glossary dt:last-of-type,
.df-help-glossary dd:last-of-type {
    border-bottom: 0;
}

.df-help-glossary ul {
    margin-top: 0.65rem;
    padding-left: 1.2rem;
}

@media (max-width: 991.98px) {
    .df-public-layout,
    .df-help-grid {
        grid-template-columns: 1fr;
    }

    .df-public-toc {
        position: static;
        max-height: none;
    }

    .df-public-toc ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .df-public-page {
        padding-top: 0.5rem;
    }

    .df-public-hero,
    .df-public-article {
        border-radius: 1rem;
    }

    .df-public-layout,
    .df-help-grid {
        margin-top: 1.25rem;
    }

    .df-public-toc {
        padding: 1rem;
    }

    .df-public-toc ol,
    .df-support-options {
        grid-template-columns: 1fr;
    }

    .df-public-contact {
        grid-template-columns: 1fr;
    }

    .df-public-contact__actions .btn,
    .df-help-links .btn {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .df-support-option {
        transition: none;
    }
}

@media print {
    .df-header,
    .df-site-footer,
    .df-public-breadcrumb,
    .df-public-toc,
    .df-back-to-top {
        display: none !important;
    }

    body,
    html {
        background: #fff;
    }

    .df-public-hero,
    .df-public-article {
        color: #000;
        background: #fff;
        border: 0;
        box-shadow: none;
    }

    .df-public-hero {
        padding: 0 0 1.5rem;
    }

    .df-public-hero h1,
    .df-public-hero__summary,
    .df-public-hero__meta {
        color: #000;
    }

    .df-public-layout {
        display: block;
        margin: 0;
    }

    .df-public-article {
        padding: 0;
    }
}
