/* =========================================================
   PRIVACY PAGE — PREMIUM MINIMAL
========================================================= */

.privacy-page {
    --privacy-orange: #e8892f;
    --privacy-blue: #182536;
    --privacy-muted: #727b85;
    --privacy-border: rgba(24, 37, 54, .09);
    --privacy-bg: #faf9f6;

    background: var(--privacy-bg);
    color: var(--privacy-blue);
}


/* =========================================================
   HERO
========================================================= */

.privacy-hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 90px;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(232,137,47,.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f8f7f4 0%,
            #ffffff 100%
        );
}


.privacy-pattern {
    position: absolute;
    inset: 0;

    opacity: .4;

    background-image:
        radial-gradient(
            circle at 1px 1px,
            rgba(24,37,54,.07) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 25%,
            black 75%,
            transparent
        );
}


.privacy-breadcrumb {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 65px;

    color: #8b9299;

    font-size: 13px;
}


.privacy-breadcrumb a {
    color: #8b9299;
    text-decoration: none;

    transition: color .25s ease;
}


.privacy-breadcrumb a:hover {
    color: var(--privacy-orange);
}


.privacy-breadcrumb span {
    color: #c0c4c8;
}


.privacy-breadcrumb span i {
    font-size: 9px;
}


.privacy-breadcrumb strong {
    color: var(--privacy-orange);
}


/* =========================================================
   HERO GRID
========================================================= */

.privacy-hero-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, .85fr);

    align-items: center;

    gap: 80px;
}


.privacy-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--privacy-orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.privacy-eyebrow span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--privacy-orange);

    box-shadow:
        0 0 0 6px rgba(232,137,47,.12);
}


.privacy-hero-content h1 {
    margin: 15px 0 18px;

    color: var(--privacy-blue);

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 700;

    line-height: .98;

    letter-spacing: -2.5px;
}


.privacy-hero-content h1 em {
    color: var(--privacy-orange);

    font-style: normal;
}


.privacy-hero-content > p {
    max-width: 680px;

    margin: 0;

    color: var(--privacy-muted);

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================================
   META
========================================================= */

.privacy-meta {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 35px;
}


.privacy-meta-item {
    display: flex;
    align-items: center;

    gap: 12px;
}


.privacy-meta-item > i {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--privacy-orange);

    background: rgba(232,137,47,.1);
}


.privacy-meta-item small {
    display: block;

    margin-bottom: 2px;

    color: #949ba2;

    font-size: 10px;
}


.privacy-meta-item strong {
    display: block;

    color: var(--privacy-blue);

    font-size: 13px;
}


.privacy-meta-divider {
    width: 1px;
    height: 38px;

    background: var(--privacy-border);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.privacy-hero-visual {
    position: relative;

    min-height: 410px;

    display: grid;
    place-items: center;
}


.privacy-shield {
    position: relative;

    width: 190px;
    height: 220px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #24364b,
            #152231
        );

    clip-path: polygon(
        50% 0%,
        91% 15%,
        91% 57%,
        78% 77%,
        50% 100%,
        22% 77%,
        9% 57%,
        9% 15%
    );

    box-shadow:
        0 30px 70px rgba(24,37,54,.2);

    z-index: 3;
}


.privacy-shield > i {
    position: relative;

    color: var(--privacy-orange);

    font-size: 54px;

    z-index: 2;
}


.privacy-shield span {
    position: relative;

    font-size: 12px;

    letter-spacing: 1px;

    z-index: 2;
}


.privacy-shield-glow {
    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
        rgba(232,137,47,.2);

    filter: blur(20px);
}


.privacy-orbit {
    position: absolute;

    border: 1px solid rgba(24,37,54,.08);

    border-radius: 50%;
}


.orbit-one {
    width: 320px;
    height: 320px;

    animation:
        privacyOrbit 14s linear infinite;
}


.orbit-two {
    width: 410px;
    height: 410px;

    border-style: dashed;

    opacity: .65;

    animation:
        privacyOrbitReverse 20s linear infinite;
}


@keyframes privacyOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes privacyOrbitReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.privacy-floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border: 1px solid rgba(24,37,54,.08);

    border-radius: 14px;

    color: var(--privacy-blue);

    background:
        rgba(255,255,255,.88);

    box-shadow:
        0 18px 40px rgba(24,37,54,.09);

    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;

    z-index: 5;
}


.privacy-floating-card i {
    color: var(--privacy-orange);
}


.card-top {
    top: 55px;
    right: 0;

    animation:
        privacyFloat 4s ease-in-out infinite;
}


.card-bottom {
    bottom: 45px;
    left: 5px;

    animation:
        privacyFloat 5s ease-in-out infinite reverse;
}


@keyframes privacyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   TRUST
========================================================= */

.privacy-trust {
    position: relative;

    margin-top: -15px;

    z-index: 10;
}


.privacy-trust-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.privacy-trust-card {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 25px;

    border: 1px solid var(--privacy-border);

    border-radius: 18px;

    background: rgba(255,255,255,.95);

    box-shadow:
        0 15px 35px rgba(24,37,54,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.privacy-trust-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 45px rgba(24,37,54,.09);
}


.trust-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--privacy-orange);

    background:
        rgba(232,137,47,.1);
}


.privacy-trust-card h3 {
    margin: 0 0 6px;

    color: var(--privacy-blue);

    font-size: 16px;
}


.privacy-trust-card p {
    margin: 0;

    color: var(--privacy-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CONTENT
========================================================= */

.privacy-content-section {
    padding: 95px 0 80px;
}


.privacy-layout {
    display: grid;

    grid-template-columns:
        255px minmax(0, 1fr);

    gap: 60px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.privacy-sidebar {
    position: sticky;

    top: 120px;
}


.privacy-sidebar-inner {
    padding: 22px;

    border: 1px solid var(--privacy-border);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 15px 35px rgba(24,37,54,.045);
}


.sidebar-label {
    display: block;

    margin-bottom: 15px;

    color: #a0a6ac;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.privacy-sidebar a {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 10px;

    border-radius: 9px;

    color: #707982;

    font-size: 12px;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease;
}


.privacy-sidebar a span {
    color: #b0b5ba;

    font-size: 10px;

    font-weight: 700;
}


.privacy-sidebar a:hover,
.privacy-sidebar a.active {
    color: var(--privacy-orange);

    background: rgba(232,137,47,.07);
}


.privacy-sidebar a.active span {
    color: var(--privacy-orange);
}


/* =========================================================
   ARTICLE
========================================================= */

.privacy-article {
    max-width: 850px;
}


.privacy-section {
    position: relative;

    display: grid;

    grid-template-columns: 58px minmax(0,1fr);

    gap: 25px;

    padding: 38px 0;

    border-bottom: 1px solid var(--privacy-border);

    scroll-margin-top: 120px;
}


.privacy-section:first-child {
    padding-top: 0;
}


.privacy-section-number {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(232,137,47,.2);

    border-radius: 13px;

    color: var(--privacy-orange);

    background: rgba(232,137,47,.07);

    font-size: 11px;

    font-weight: 700;
}


.privacy-section-kicker {
    display: block;

    margin-bottom: 7px;

    color: var(--privacy-orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.privacy-section h2 {
    margin: 0 0 15px;

    color: var(--privacy-blue);

    font-size: 26px;

    letter-spacing: -.4px;
}


.privacy-section p {
    margin: 0 0 14px;

    color: #69737d;

    font-size: 15px;

    line-height: 1.9;
}


.privacy-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.privacy-list {
    display: grid;

    gap: 12px;

    margin: 20px 0 0;

    padding: 0;

    list-style: none;
}


.privacy-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #69737d;

    font-size: 14px;

    line-height: 1.7;
}


.privacy-list li i {
    flex: 0 0 auto;

    margin-top: 4px;

    color: var(--privacy-orange);

    font-size: 11px;
}


/* =========================================================
   NOTE
========================================================= */

.privacy-note {
    display: flex;

    gap: 13px;

    margin-top: 20px;

    padding: 17px;

    border-left: 3px solid var(--privacy-orange);

    border-radius: 0 10px 10px 0;

    background: rgba(232,137,47,.055);
}


.privacy-note i {
    margin-top: 4px;

    color: var(--privacy-orange);
}


.privacy-note p {
    margin: 0;

    font-size: 13px;
}


/* =========================================================
   CONTACT
========================================================= */

.privacy-contact-section {
    padding-bottom: 10px;

    border-bottom: 0;
}


.privacy-contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 15px;

    margin-top: 25px;
}


.privacy-contact-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px;

    border: 1px solid var(--privacy-border);

    border-radius: 13px;

    color: var(--privacy-blue);

    background: #fff;

    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.privacy-contact-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(232,137,47,.35);

    color: var(--privacy-blue);
}


.privacy-contact-item > div {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--privacy-orange);

    background: rgba(232,137,47,.08);
}


.privacy-contact-item small {
    display: block;

    color: #9aa0a6;

    font-size: 10px;
}


.privacy-contact-item strong {
    display: block;

    margin-top: 2px;

    font-size: 12px;
}


.privacy-address {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 17px;

    padding: 15px 17px;

    border-radius: 12px;

    background: #f5f5f2;

    color: #727a82;

    font-size: 13px;

    line-height: 1.7;
}


.privacy-address i {
    margin-top: 4px;

    color: var(--privacy-orange);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.privacy-bottom {
    padding: 20px 0 100px;
}


.privacy-bottom-card {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    overflow: hidden;

    padding: 40px 45px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            #172638,
            #23374b
        );

    box-shadow:
        0 25px 60px rgba(24,37,54,.15);
}


.privacy-bottom-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -170px;

    border-radius: 50%;

    background:
        rgba(232,137,47,.18);
}


.privacy-bottom-card > div {
    position: relative;
    z-index: 2;
}


.privacy-bottom-card span {
    color: #e9a15f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.privacy-bottom-card h2 {
    margin: 9px 0 5px;

    color: #fff;

    font-size: 26px;
}


.privacy-bottom-card p {
    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;
}


.privacy-cta {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 13px 20px;

    border-radius: 50px;

    color: #fff;

    background: var(--privacy-orange);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.privacy-cta:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(232,137,47,.3);
}

/* =========================================================
   RESPONSIVE — MOBILE / TABLET / STICKY NAV
   ========================================================= */

/* ---------- TABLET / SMALL DESKTOP ---------- */
@media (max-width: 991px) {

    .privacy-hero {
        padding: 80px 0 70px;
    }

    .privacy-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .privacy-hero-content {
        width: 100%;
    }

    .privacy-hero-visual {
        width: 100%;
        max-width: 430px;
        min-height: 350px;
        margin: 0 auto;
    }

    .privacy-trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }

    /*
     * Keep the policy navigation sticky.
     * Do NOT change this to position: relative.
     */
    .privacy-sidebar {
        position: sticky !important;
        position: -webkit-sticky !important;
        top: 75px !important;
        align-self: start !important;
        width: 100%;
        z-index: 100;
    }

    .privacy-sidebar-inner {
        display: flex;
        align-items: center;
        gap: 5px;
        overflow-x: auto;
        padding: 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        background: #fff;
    }

    .privacy-sidebar-inner::-webkit-scrollbar {
        display: none;
    }

    .sidebar-label {
        display: none;
    }

    .privacy-sidebar a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .privacy-sidebar a span {
        display: none;
    }

    .privacy-article {
        width: 100%;
        max-width: none;
    }
}


/* ---------- MOBILE ---------- */
@media (max-width: 767px) {

    .privacy-page .container-xl {
        padding-left: 16px;
        padding-right: 16px;
    }

    .privacy-hero {
        padding: 42px 0 40px;
    }

    .privacy-breadcrumb {
        margin-bottom: 30px;
        gap: 7px;
        flex-wrap: wrap;
        font-size: 11px;
    }

    .privacy-hero-grid {
        gap: 15px;
    }

    .privacy-eyebrow {
        gap: 8px;
        font-size: 10px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .privacy-eyebrow span {
        width: 6px;
        height: 6px;
        flex: 0 0 6px;
        box-shadow: 0 0 0 4px rgba(232,137,47,.12);
    }

    .privacy-hero-content h1 {
        margin: 12px 0 14px;
        font-size: clamp(38px, 12vw, 48px);
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .privacy-hero-content > p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.75;
    }

    .privacy-meta {
        margin-top: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .privacy-meta-divider {
        display: none;
    }

    .privacy-meta-item {
        gap: 10px;
    }

    .privacy-meta-item > i {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-radius: 10px;
    }

    .privacy-meta-item small {
        font-size: 9px;
    }

    .privacy-meta-item strong {
        font-size: 12px;
    }


    /* ---------- HERO VISUAL ---------- */

    .privacy-hero-visual {
        min-height: 270px;
        max-width: 340px;
        margin: 5px auto 0;
    }

    .privacy-shield {
        width: 150px;
        height: 180px;
    }

    .privacy-shield > i {
        font-size: 42px;
    }

    .privacy-shield span {
        font-size: 10px;
        letter-spacing: .8px;
    }

    .privacy-shield-glow {
        width: 75px;
        height: 75px;
    }

    .orbit-one {
        width: 220px;
        height: 220px;
    }

    .orbit-two {
        width: 275px;
        height: 275px;
    }

    .privacy-floating-card {
        padding: 8px 10px;
        gap: 7px;
        border-radius: 10px;
        font-size: 9px;
        white-space: nowrap;
    }

    .privacy-floating-card i {
        font-size: 10px;
    }

    .card-top {
        top: 10px;
        right: 0;
    }

    .card-bottom {
        bottom: 10px;
        left: 0;
    }


    /* ---------- TRUST ---------- */

    .privacy-trust {
        margin-top: 0;
    }

    .privacy-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .privacy-trust-card {
        gap: 12px;
        padding: 16px;
        border-radius: 14px;
    }

    .trust-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .privacy-trust-card h3 {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .privacy-trust-card p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* ---------- CONTENT ---------- */

    .privacy-content-section {
        padding: 42px 0 35px;
    }

    .privacy-layout {
        display: block;
    }


    /* ---------- STICKY POLICY NAV ---------- */

    .privacy-sidebar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 60px !important;
        width: 100%;
        margin-bottom: 25px;
        padding: 6px 0;
        background: var(--privacy-bg);
        z-index: 1000;
    }

    .privacy-sidebar-inner {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        padding: 7px;
        border: 1px solid var(--privacy-border);
        border-radius: 12px;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #fff;
        box-shadow: 0 5px 15px rgba(24,37,54,.08);
    }

    .privacy-sidebar-inner::-webkit-scrollbar {
        display: none;
    }

    .privacy-sidebar a {
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 11px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .privacy-sidebar a span {
        display: inline;
        font-size: 9px;
    }


    /* ---------- ARTICLE ---------- */

    .privacy-article {
        width: 100%;
        max-width: none;
    }

    .privacy-section {
        display: block;
        padding: 26px 0;
        scroll-margin-top: 125px;
    }

    .privacy-section:first-child {
        padding-top: 0;
    }

    .privacy-section-number {
        width: 36px;
        height: 36px;
        margin-bottom: 13px;
        border-radius: 10px;
        font-size: 10px;
    }

    .privacy-section-kicker {
        margin-bottom: 6px;
        font-size: 9px;
        letter-spacing: .9px;
    }

    .privacy-section h2 {
        margin-bottom: 11px;
        font-size: 21px;
        line-height: 1.3;
        letter-spacing: -.2px;
    }

    .privacy-section p {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.8;
    }


    /* ---------- LIST ---------- */

    .privacy-list {
        gap: 9px;
        margin-top: 16px;
    }

    .privacy-list li {
        gap: 9px;
        font-size: 12.5px;
        line-height: 1.65;
    }

    .privacy-list li i {
        margin-top: 4px;
        font-size: 10px;
    }


    /* ---------- NOTE ---------- */

    .privacy-note {
        gap: 9px;
        margin-top: 16px;
        padding: 13px;
    }

    .privacy-note p {
        font-size: 12px;
        line-height: 1.65;
    }


    /* ---------- CONTACT ---------- */

    .privacy-contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .privacy-contact-item {
        gap: 10px;
        padding: 13px;
        border-radius: 11px;
        min-width: 0;
    }

    .privacy-contact-item > div {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-radius: 9px;
    }

    .privacy-contact-item small {
        font-size: 9px;
    }

    .privacy-contact-item strong {
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    .privacy-address {
        gap: 9px;
        margin-top: 12px;
        padding: 12px 13px;
        font-size: 12px;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }


    /* ---------- CTA ---------- */

    .privacy-bottom {
        padding: 10px 0 45px;
    }

    .privacy-bottom-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding: 24px 18px;
        border-radius: 17px;
    }

    .privacy-bottom-card span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .privacy-bottom-card h2 {
        margin: 7px 0 6px;
        font-size: 20px;
        line-height: 1.35;
    }

    .privacy-bottom-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .privacy-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 17px;
        font-size: 11px;
    }
}


/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 380px) {

    .privacy-page .container-xl {
        padding-left: 13px;
        padding-right: 13px;
    }

    .privacy-hero {
        padding-top: 35px;
    }

    .privacy-hero-content h1 {
        font-size: 36px;
    }

    .privacy-hero-visual {
        min-height: 245px;
    }

    .privacy-shield {
        width: 140px;
        height: 168px;
    }

    .privacy-shield > i {
        font-size: 38px;
    }

    .orbit-one {
        width: 195px;
        height: 195px;
    }

    .orbit-two {
        width: 245px;
        height: 245px;
    }

    .privacy-floating-card {
        font-size: 8px;
        padding: 7px 8px;
    }

    .privacy-sidebar {
        top: 55px !important;
    }

    .privacy-sidebar a {
        padding: 7px 9px;
        font-size: 10px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-bottom-card {
        padding: 21px 15px;
    }
}


/* =========================================================
   STICKY SAFETY
   ========================================================= */

/*
 * Sticky positioning can fail when an ancestor has:
 * overflow: hidden / auto / scroll.
 *
 * The hero itself may keep its visual clipping,
 * but the overall privacy page/content must remain visible.
 */
.privacy-page {
    overflow: visible !important;
}

.privacy-content-section {
    overflow: visible !important;
}

.privacy-layout {
    overflow: visible !important;
}