/* ==========================================================================
   Privacy Statement page styles
   Scoped under .privacy-content so it layers cleanly on top of style.css
   (which already sets body font, heading font, link colour, etc.)
   ========================================================================== */

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Intro block: company name / document title / last-updated line */
.privacy-content .privacy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #3d4049;
    margin: 0 0 4px;
}

.privacy-content .privacy-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f2c52;
    margin: 0 0 10px;
}

.privacy-content .privacy-updated {
    font-size: 14px;
    color: #959595;
    margin: 0 0 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
}

/* Numbered top-level sections (1. Who we are and what we do, etc.) */
.privacy-content {
    counter-reset: privacy-section;
}

.privacy-content h1 {
    counter-increment: privacy-section;
    font-size: 24px;
    line-height: 32px;
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0f2c52;
}

.privacy-content h1::before {
    content: counter(privacy-section) ". ";
    color: #0f2c52;
}

.privacy-content h1:first-of-type {
    margin-top: 0;
}

.privacy-content h2 {
    font-size: 18px;
    line-height: 26px;
    margin: 28px 0 12px;
}

.privacy-content h3 {
    font-size: 15px;
    line-height: 22px;
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0f2c52;
}

.privacy-content p {
    margin: 0 0 16px;
    text-align: justify;
}

.privacy-content p.lead {
    font-weight: 700;
    color: #3d4049;
}

.privacy-content a {
    text-decoration: underline;
}

/* Plain bullet lists (e.g. "who this notice applies to", cookie links) */
.privacy-content ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.privacy-content ul li {
    margin-bottom: 8px;
}

/* Rights list, rendered as a definition list: bold right name + explanation */
.privacy-content dl.rights-list {
    margin: 0 0 24px;
    border-left: 3px solid #0f2c52;
    padding-left: 20px;
}

.privacy-content dl.rights-list dt {
    font-weight: 700;
    color: #3d4049;
    margin-top: 16px;
}

.privacy-content dl.rights-list dt:first-child {
    margin-top: 0;
}

.privacy-content dl.rights-list dd {
    margin: 4px 0 0;
}

.privacy-content dl.rights-list dd p {
    margin: 0;
}

/* Postal addresses */
.privacy-content address {
    font-style: normal;
    line-height: 24px;
    margin: 0 0 20px;
    padding: 16px 20px;
    background: #f9f9f9;
    border-left: 3px solid #0f2c52;
}

    /* Data tables (purposes/lawful-bases table, cookies table) */
    .privacy-content .table-responsive {
        margin: 0 0 12px;
    }

    .privacy-content table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
        font-size: 13px;
    }

    .privacy-content th,
    .privacy-content td {
        border: 1px solid #e7e7e7;
        padding: 8px 4px;
        text-align: left;
        vertical-align: top;
    }

    .privacy-content th {
        background: #0f2c52;
        color: #fff;
        font-weight: 700;
    }

    .privacy-content td p {
        margin: 0;
        line-height: 1.3;
    }

    .privacy-content table p {
        text-align: left;
    }

    .privacy-content tr:nth-child(even) td {
        background: #f9f9f9;
    }

@media (max-width: 600px) {
    .privacy-content th,
    .privacy-content td {
        padding: 5px;
        font-size: 13px;
    }
}}
