/* =========================================================
   TERMS & CONDITIONS
========================================================= */

.terms-page {
    --terms-orange: #e8892f;
    --terms-blue: #182536;
    --terms-muted: #727b85;
    --terms-border: rgba(24,37,54,.09);
    --terms-bg: #faf9f6;

    background: var(--terms-bg);
    color: var(--terms-blue);
}


/* =========================================================
   HERO
========================================================= */

.terms-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%
        );
}


.terms-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
        );
}


.terms-breadcrumb {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 65px;

    color: #8b9299;

    font-size: 13px;
}


.terms-breadcrumb a {
    color: #8b9299;
    text-decoration: none;

    transition: color .25s ease;
}


.terms-breadcrumb a:hover {
    color: var(--terms-orange);
}


.terms-breadcrumb span {
    color: #c0c4c8;
}


.terms-breadcrumb span i {
    font-size: 9px;
}


.terms-breadcrumb strong {
    color: var(--terms-orange);
}


/* =========================================================
   HERO GRID
========================================================= */

.terms-hero-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0,1.15fr)
        minmax(380px,.85fr);

    align-items: center;

    gap: 80px;
}


.terms-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--terms-orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.terms-eyebrow span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--terms-orange);

    box-shadow:
        0 0 0 6px rgba(232,137,47,.12);
}


.terms-hero-content h1 {
    margin: 15px 0 18px;

    color: var(--terms-blue);

    font-size: clamp(48px,6vw,78px);

    font-weight: 700;

    line-height: .98;

    letter-spacing: -2.5px;
}


.terms-hero-content h1 em {
    color: var(--terms-orange);

    font-style: normal;
}


.terms-hero-content > p {
    max-width: 680px;

    margin: 0;

    color: var(--terms-muted);

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================================
   META
========================================================= */

.terms-meta {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 35px;
}


.terms-meta-item {
    display: flex;
    align-items: center;

    gap: 12px;
}


.terms-meta-item > i {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--terms-orange);

    background: rgba(232,137,47,.1);
}


.terms-meta-item small {
    display: block;

    color: #949ba2;

    font-size: 10px;
}


.terms-meta-item strong {
    display: block;

    color: var(--terms-blue);

    font-size: 13px;
}


.terms-meta-divider {
    width: 1px;
    height: 38px;

    background: var(--terms-border);
}


/* =========================================================
   DOCUMENT VISUAL
========================================================= */

.terms-hero-visual {
    position: relative;

    min-height: 410px;

    display: grid;
    place-items: center;
}


.terms-circle {
    position: absolute;

    border: 1px solid rgba(24,37,54,.08);

    border-radius: 50%;
}


.circle-one {
    width: 320px;
    height: 320px;

    animation:
        termsRotate 16s linear infinite;
}


.circle-two {
    width: 410px;
    height: 410px;

    border-style: dashed;

    animation:
        termsRotateReverse 23s linear infinite;
}


@keyframes termsRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes termsRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }

}


/* DOCUMENT */

.terms-document {
    position: relative;

    width: 220px;
    height: 285px;

    padding: 23px;

    border: 1px solid rgba(24,37,54,.1);

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(24,37,54,.14);

    transform:
        rotate(-4deg);

    z-index: 3;

    animation:
        termsDocumentFloat 5s ease-in-out infinite;
}


@keyframes termsDocumentFloat {

    0%,
    100% {
        transform: rotate(-4deg) translateY(0);
    }

    50% {
        transform: rotate(-2deg) translateY(-9px);
    }

}


.document-top {
    display: flex;

    gap: 5px;

    margin-bottom: 22px;
}


.document-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d9dce0;
}


.document-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 15px;

    color: var(--terms-orange);

    background:
        rgba(232,137,47,.09);

    font-size: 25px;
}


.document-lines {
    display: grid;

    gap: 12px;
}


.document-lines span {
    display: block;

    width: 100%;
    height: 7px;

    border-radius: 10px;

    background: #eef0f2;
}


.document-lines span:nth-child(2) {
    width: 80%;
}


.document-lines span:nth-child(3) {
    width: 90%;
}


.document-lines span:nth-child(4) {
    width: 65%;
}


.document-check {
    position: absolute;

    left: 23px;
    right: 23px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px;

    border-radius: 9px;

    color: #60706a;

    background: #f3f7f4;

    font-size: 10px;
    font-weight: 600;
}


.document-check i {
    color: #4f9b70;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.terms-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(--terms-blue);

    background:
        rgba(255,255,255,.9);

    box-shadow:
        0 18px 40px rgba(24,37,54,.09);

    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;

    z-index: 5;
}


.terms-floating-card i {
    color: var(--terms-orange);
}


.terms-card-top {
    top: 50px;
    right: 0;

    animation:
        termsFloat 4s ease-in-out infinite;
}


.terms-card-bottom {
    left: 0;
    bottom: 45px;

    animation:
        termsFloat 5s ease-in-out infinite reverse;
}


@keyframes termsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   TRUST
========================================================= */

.terms-trust {
    position: relative;

    margin-top: -15px;

    z-index: 10;
}


.terms-trust-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 18px;
}


.terms-trust-card {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 25px;

    border: 1px solid var(--terms-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;
}


.terms-trust-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 45px rgba(24,37,54,.09);
}


.terms-trust-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--terms-orange);

    background:
        rgba(232,137,47,.1);
}


.terms-trust-card h3 {
    margin: 0 0 6px;

    font-size: 16px;
}


.terms-trust-card p {
    margin: 0;

    color: var(--terms-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CONTENT
========================================================= */

.terms-content-section {
    padding: 95px 0 80px;
}


.terms-layout {
    display: grid;

    grid-template-columns:
        255px minmax(0,1fr);

    gap: 60px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.terms-sidebar {
    position: sticky;

    top: 120px;
}


.terms-sidebar-inner {
    padding: 22px;

    border: 1px solid var(--terms-border);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 15px 35px rgba(24,37,54,.045);
}


.terms-sidebar-label {
    display: block;

    margin-bottom: 15px;

    color: #a0a6ac;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.terms-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;
}


.terms-sidebar a span {
    color: #b0b5ba;

    font-size: 10px;

    font-weight: 700;
}


.terms-sidebar a:hover,
.terms-sidebar a.active {
    color: var(--terms-orange);

    background:
        rgba(232,137,47,.07);
}


.terms-sidebar a.active span {
    color: var(--terms-orange);
}


/* =========================================================
   ARTICLE
========================================================= */

.terms-article {
    max-width: 850px;
}


.terms-section {
    position: relative;

    display: grid;

    grid-template-columns:
        58px minmax(0,1fr);

    gap: 25px;

    padding: 38px 0;

    border-bottom:
        1px solid var(--terms-border);

    scroll-margin-top: 120px;
}


.terms-section:first-child {
    padding-top: 0;
}


.terms-section-number {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(232,137,47,.2);

    border-radius: 13px;

    color: var(--terms-orange);

    background:
        rgba(232,137,47,.07);

    font-size: 11px;

    font-weight: 700;
}


.terms-section-kicker {
    display: block;

    margin-bottom: 7px;

    color: var(--terms-orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.terms-section h2 {
    margin: 0 0 15px;

    color: var(--terms-blue);

    font-size: 26px;

    letter-spacing: -.4px;
}


.terms-section p {
    margin: 0 0 14px;

    color: #69737d;

    font-size: 15px;

    line-height: 1.9;
}


.terms-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.terms-list {
    display: grid;

    gap: 12px;

    margin: 20px 0 0;

    padding: 0;

    list-style: none;
}


.terms-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #69737d;

    font-size: 14px;

    line-height: 1.7;
}


.terms-list li i {
    flex: 0 0 auto;

    margin-top: 4px;

    color: var(--terms-orange);

    font-size: 11px;
}


/* =========================================================
   NOTE
========================================================= */

.terms-note {
    display: flex;

    gap: 13px;

    margin-top: 20px;

    padding: 17px;

    border-left:
        3px solid var(--terms-orange);

    border-radius:
        0 10px 10px 0;

    background:
        rgba(232,137,47,.055);
}


.terms-note i {
    margin-top: 4px;

    color: var(--terms-orange);
}


.terms-note p {
    margin: 0;

    font-size: 13px;
}


/* =========================================================
   CONTACT
========================================================= */

.terms-contact-section {
    border-bottom: 0;

    padding-bottom: 10px;
}


.terms-contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 15px;

    margin-top: 25px;
}


.terms-contact-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px;

    border: 1px solid var(--terms-border);

    border-radius: 13px;

    color: var(--terms-blue);

    background: #fff;

    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.terms-contact-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(232,137,47,.35);

    color: var(--terms-blue);
}


.terms-contact-item > div {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--terms-orange);

    background:
        rgba(232,137,47,.08);
}


.terms-contact-item small {
    display: block;

    color: #9aa0a6;

    font-size: 10px;
}


.terms-contact-item strong {
    display: block;

    margin-top: 2px;

    font-size: 12px;
}


.terms-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;
}


.terms-address i {
    margin-top: 4px;

    color: var(--terms-orange);
}


/* =========================================================
   CTA
========================================================= */

.terms-bottom {
    padding: 20px 0 100px;
}


.terms-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);
}


.terms-bottom-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -170px;

    border-radius: 50%;

    background:
        rgba(232,137,47,.18);
}


.terms-bottom-card > div {
    position: relative;

    z-index: 2;
}


.terms-bottom-card span {
    color: #e9a15f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.terms-bottom-card h2 {
    margin: 9px 0 5px;

    color: #fff;

    font-size: 26px;
}


.terms-bottom-card p {
    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;
}


.terms-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(--terms-orange);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.terms-cta:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(232,137,47,.3);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---------- TABLET / SMALL DESKTOP ---------- */
@media (max-width: 991px) {

    .terms-hero {
        padding: 80px 0 70px;
    }

    .terms-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .terms-hero-visual {
        min-height: 350px;
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
    }

    .terms-trust-grid {
        grid-template-columns: 1fr;
    }

    .terms-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        align-items: start;
    }

    /*
     * Keep the sidebar sticky on tablet/mobile.
     * The previous CSS changed it to position:relative,
     * which is why it stopped sticking.
     */
    .terms-sidebar {
        position: sticky;
        position: -webkit-sticky;
        top: 75px;
        align-self: start;
        width: 100%;
        z-index: 100;
    }

    .terms-sidebar-inner {
        display: flex;
        align-items: center;
        gap: 5px;
        overflow-x: auto;
        padding: 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        background: #fff;
    }

    .terms-sidebar-inner::-webkit-scrollbar {
        display: none;
    }

    .terms-sidebar-label {
        display: none;
    }

    .terms-sidebar a {
        flex: 0 0 auto;
    }

    .terms-sidebar a span {
        display: none;
    }

    .terms-article {
        max-width: none;
        width: 100%;
    }
}


/* ---------- MOBILE ---------- */
@media (max-width: 767px) {

    .terms-page .container-xl {
        padding-left: 16px;
        padding-right: 16px;
    }

    .terms-hero {
        padding: 45px 0 40px;
    }

    .terms-breadcrumb {
        margin-bottom: 30px;
        gap: 7px;
        flex-wrap: wrap;
        font-size: 11px;
    }

    .terms-hero-grid {
        gap: 15px;
    }

    .terms-eyebrow {
        gap: 8px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .terms-eyebrow span {
        width: 6px;
        height: 6px;
        box-shadow: 0 0 0 4px rgba(232,137,47,.12);
    }

    .terms-hero-content h1 {
        margin: 12px 0 14px;
        font-size: clamp(38px, 12vw, 48px);
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .terms-hero-content > p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.75;
    }

    .terms-meta {
        margin-top: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .terms-meta-divider {
        display: none;
    }

    .terms-meta-item {
        gap: 10px;
    }

    .terms-meta-item > i {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .terms-meta-item small {
        font-size: 9px;
    }

    .terms-meta-item strong {
        font-size: 12px;
    }


    /* HERO VISUAL */
    .terms-hero-visual {
        min-height: 275px;
        max-width: 340px;
        margin: 5px auto 0;
    }

    .circle-one {
        width: 220px;
        height: 220px;
    }

    .circle-two {
        width: 275px;
        height: 275px;
    }

    .terms-document {
        width: 155px;
        height: 210px;
        padding: 17px;
    }

    .document-top {
        margin-bottom: 15px;
    }

    .document-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 15px;
        border-radius: 12px;
        font-size: 20px;
    }

    .document-lines {
        gap: 8px;
    }

    .document-lines span {
        height: 5px;
    }

    .document-check {
        left: 17px;
        right: 17px;
        bottom: 16px;
        padding: 8px;
        font-size: 9px;
    }

    .terms-floating-card {
        padding: 8px 10px;
        gap: 7px;
        border-radius: 10px;
        font-size: 9px;
        white-space: nowrap;
    }

    .terms-card-top {
        top: 10px;
        right: 0;
    }

    .terms-card-bottom {
        left: 0;
        bottom: 10px;
    }


    /* TRUST CARDS */
    .terms-trust {
        margin-top: 0;
    }

    .terms-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .terms-trust-card {
        gap: 12px;
        padding: 16px;
        border-radius: 14px;
    }

    .terms-trust-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .terms-trust-card h3 {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .terms-trust-card p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* CONTENT */
    .terms-content-section {
        padding: 42px 0 35px;
    }

    .terms-layout {
        display: block;
    }


    /* STICKY SECTION NAVIGATION */
    .terms-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 60px;
        width: 100%;
        margin-bottom: 25px;
        padding: 6px 0;
        background: var(--terms-bg);
        z-index: 1000;
    }

    .terms-sidebar-inner {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        padding: 7px;
        border: 1px solid var(--terms-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);
    }

    .terms-sidebar-inner::-webkit-scrollbar {
        display: none;
    }

    .terms-sidebar a {
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 11px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .terms-sidebar a span {
        display: inline;
        font-size: 9px;
    }


    /* ARTICLE */
    .terms-article {
        width: 100%;
        max-width: none;
    }

    .terms-section {
        display: block;
        padding: 26px 0;
        scroll-margin-top: 120px;
    }

    .terms-section:first-child {
        padding-top: 0;
    }

    .terms-section-number {
        width: 36px;
        height: 36px;
        margin-bottom: 13px;
        border-radius: 10px;
        font-size: 10px;
    }

    .terms-section-kicker {
        margin-bottom: 6px;
        font-size: 9px;
        letter-spacing: .9px;
    }

    .terms-section h2 {
        margin: 0 0 11px;
        font-size: 21px;
        line-height: 1.3;
        letter-spacing: -.2px;
    }

    .terms-section p {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.8;
    }


    /* LIST */
    .terms-list {
        gap: 9px;
        margin-top: 16px;
    }

    .terms-list li {
        gap: 9px;
        font-size: 12.5px;
        line-height: 1.65;
    }


    /* NOTE */
    .terms-note {
        gap: 9px;
        margin-top: 16px;
        padding: 13px;
    }

    .terms-note p {
        font-size: 12px;
        line-height: 1.65;
    }


    /* CONTACT */
    .terms-contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .terms-contact-item {
        gap: 10px;
        padding: 13px;
        border-radius: 11px;
        min-width: 0;
    }

    .terms-contact-item > div {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-radius: 9px;
    }

    .terms-contact-item strong {
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    .terms-address {
        gap: 9px;
        margin-top: 12px;
        padding: 12px 13px;
        font-size: 12px;
        line-height: 1.65;
    }


    /* CTA */
    .terms-bottom {
        padding: 10px 0 45px;
    }

    .terms-bottom-card {
        gap: 20px;
        padding: 24px 18px;
        border-radius: 17px;
    }

    .terms-bottom-card span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .terms-bottom-card h2 {
        margin: 7px 0 6px;
        font-size: 20px;
        line-height: 1.35;
    }

    .terms-bottom-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .terms-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 17px;
        font-size: 11px;
    }
}


/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 380px) {

    .terms-page .container-xl {
        padding-left: 13px;
        padding-right: 13px;
    }

    .terms-hero {
        padding-top: 35px;
    }

    .terms-hero-content h1 {
        font-size: 36px;
    }

    .terms-hero-visual {
        min-height: 245px;
    }

    .circle-one {
        width: 195px;
        height: 195px;
    }

    .circle-two {
        width: 245px;
        height: 245px;
    }

    .terms-document {
        width: 140px;
        height: 190px;
    }

    .terms-floating-card {
        font-size: 8px;
        padding: 7px 8px;
    }

    .terms-sidebar {
        top: 55px;
    }

    .terms-sidebar a {
        padding: 7px 9px;
        font-size: 10px;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .terms-bottom-card {
        padding: 21px 15px;
    }
}


/* =========================================================
   STICKY SAFETY
   ========================================================= */

/*
 * IMPORTANT:
 * Sticky positioning breaks when an ancestor has overflow:
 * hidden / auto / scroll.
 *
 * Keep the terms page overflow visible.
 */
.terms-page {
    overflow: visible !important;
}

.terms-content-section {
    overflow: visible !important;
}

.terms-layout {
    overflow: visible !important;
}