/* Extracted from keystoneapp/templates/terms/privacy_policy.html */
.privacy-page {
        background: #f6f8fb;
        color: #1f2937;
    }

    .privacy-hero {
        background: linear-gradient(135deg, #10233f 0%, #163b63 48%, #0f766e 100%);
        color: #fff;
        padding: 84px 0 64px;
        position: relative;
        overflow: hidden;
    }

    .privacy-hero::after {
        content: "";
        position: absolute;
        right: -90px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .1);
    }

    .privacy-hero .container {
        position: relative;
        z-index: 1;
    }

    .privacy-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .45rem .8rem;
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: #e8f7ff;
        font-size: .9rem;
        font-weight: 700;
    }

    .privacy-hero h1 {
        font-size: clamp(2.15rem, 5vw, 4.2rem);
        font-weight: 800;
        line-height: 1.05;
        margin: 1rem 0 1rem;
        letter-spacing: 0;
    }

    .privacy-hero p {
        max-width: 780px;
        color: rgba(255, 255, 255, .88);
        font-size: 1.06rem;
    }

    .privacy-updated {
        display: flex;
        flex-wrap: wrap;
        gap: .75rem;
        margin-top: 1.5rem;
    }

    .privacy-pill {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .6rem .85rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, .12);
        color: #fff;
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, .2);
    }

    .privacy-shell {
        padding: 48px 0 72px;
    }

    .privacy-summary {
        margin-top: -82px;
        position: relative;
        z-index: 2;
    }

    .privacy-card,
    .privacy-panel,
    .privacy-contact-card {
        background: #fff;
        border: 1px solid #e6edf5;
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(15, 35, 63, .08);
    }

    .privacy-card {
        height: 100%;
        padding: 1.35rem;
    }

    .privacy-card h2,
    .privacy-card h3 {
        font-size: 1.05rem;
        font-weight: 800;
        color: #10233f;
        margin-bottom: .55rem;
    }

    .privacy-card p {
        color: #526173;
        margin-bottom: 0;
    }

    .privacy-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 1.5rem;
        align-items: start;
        margin-top: 2rem;
    }

    .privacy-panel {
        padding: 1rem;
    }

    .privacy-section {
        border: 1px solid #e6edf5;
        border-radius: 8px;
        margin-bottom: .85rem;
        background: #fff;
        overflow: hidden;
    }

    .privacy-section:last-child {
        margin-bottom: 0;
    }

    .privacy-section summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        font-weight: 800;
        color: #10233f;
    }

    .privacy-section summary::-webkit-details-marker {
        display: none;
    }

    .privacy-section summary i {
        color: #0f766e;
        font-size: 1.05rem;
    }

    .privacy-section .privacy-arrow {
        flex: 0 0 auto;
        transition: transform .2s ease;
        color: #0b5f87;
    }

    .privacy-section[open] .privacy-arrow {
        transform: rotate(180deg);
    }

    .privacy-section-content {
        border-top: 1px solid #e6edf5;
        padding: 1rem 1.1rem 1.2rem;
        color: #526173;
    }

    .privacy-section-content h3 {
        color: #10233f;
        font-size: 1rem;
        font-weight: 800;
        margin-top: 1rem;
    }

    .privacy-section-content ul {
        padding-left: 1.2rem;
        margin-bottom: 1rem;
    }

    .privacy-section-content li {
        margin-bottom: .45rem;
    }

    .privacy-note {
        border-left: 4px solid #0f766e;
        background: #eefaf8;
        border-radius: 8px;
        padding: 1rem;
        color: #23445a;
        margin: 1rem 0;
    }

    .privacy-contact-card {
        padding: 1.35rem;
        position: sticky;
        top: 110px;
    }

    .privacy-contact-card h2 {
        color: #10233f;
        font-size: 1.15rem;
        font-weight: 800;
        margin-bottom: .75rem;
    }

    .privacy-contact-list {
        display: grid;
        gap: .75rem;
        margin: 1rem 0;
    }

    .privacy-contact-item {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        color: #526173;
    }

    .privacy-contact-item i {
        color: #0f766e;
        margin-top: .2rem;
    }

    .privacy-cta {
        display: grid;
        gap: .65rem;
        margin-top: 1.1rem;
    }

    .privacy-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .45rem;
        min-height: 44px;
        border-radius: 8px;
        font-weight: 800;
    }

    .privacy-primary {
        background: #0f766e;
        color: #fff;
    }

    .privacy-primary:hover {
        color: #fff;
        background: #0c5f59;
    }

    .privacy-secondary {
        border: 1px solid #c8d6e5;
        color: #10233f;
        background: #fff;
    }

    .privacy-secondary:hover {
        color: #10233f;
        border-color: #0f766e;
        background: #eefaf8;
    }

    @media (max-width: 991.98px) {
        .privacy-grid {
            grid-template-columns: 1fr;
        }

        .privacy-contact-card {
            position: static;
        }
    }

    @media (max-width: 575.98px) {
        .privacy-hero {
            padding: 64px 0 56px;
        }

        .privacy-summary {
            margin-top: -64px;
        }

        .privacy-card,
        .privacy-contact-card {
            padding: 1rem;
        }

        .privacy-panel {
            padding: .7rem;
        }

        .privacy-section summary {
            align-items: flex-start;
            padding: .95rem;
        }
    }
