/* ============================================================
   PRIVACY POLICY PAGE STYLES  (loaded only on privacy-policy.php)
   ============================================================ */

/* ---------------- banner ---------------- */

.pp-banner {
    position: relative;
    padding: 150px 0 80px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #ffffff 100%),
        linear-gradient(136.76deg, #E7EBFA 0%, #F2F2F9 38%, #EDF0FA 62%, #FEFCFD 100%);
    overflow: hidden;
}

.pp-banner-inner {
    max-width: 720px;
}

.pp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    color: #012854;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.pp-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-dot);
    flex-shrink: 0;
}

.pp-title {
    font-size: clamp(36px, 4.6vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--blue);
    margin: 0 0 16px;
}

.pp-lead {
    color: #565C67;
    font-family: 'Geist', var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    max-width: 560px;
    margin: 0;
}

/* ---------------- content ---------------- */

.pp-content {
    padding: 60px 0 90px;
    background: #fff;
    border-top: 1px solid #e8edf4;   /* visual separation from the banner */
}

.pp-content .pp-inner {
    max-width: 820px;
    margin: 0 auto;
}

/* major heading  e.g. "How do we use your information?" */
.pp-content h2 {
    font-family: 'Libre Franklin', var(--font-sans);
    font-size: 27px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    color: #1C2B40;
    margin: 44px 0 16px;
}

.pp-content h2:first-child {
    margin-top: 0;
}

/* small sub-heading  e.g. "How long do we keep your information?" */
.pp-content h3 {
    font-family: 'Libre Franklin', var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    color: #1C2B40;
    margin: 30px 0 10px;
}

/* body text + list items */
.pp-content p,
.pp-content li {
    font-family: 'Libre Franklin', var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
    color: #1C2B40;
    margin: 0 0 20px;
}

.pp-content ol,
.pp-content ul {
    margin: 0 0 20px;
    padding-left: 26px;
}

.pp-content ol {
    list-style: decimal;
}

.pp-content ul {
    list-style: disc;
}

.pp-content li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.pp-content a {
    color: #1E64F0;
    text-decoration: none;
}

.pp-content a:hover {
    text-decoration: underline;
}

/* ---------------- responsive ---------------- */

@media (max-width: 991.98px) {
    .pp-banner {
        padding: 120px 0 60px;
    }

    .pp-content {
        padding: 20px 0 60px;
    }

    .pp-content h2 {
        font-size: 23px;
        line-height: 32px;
        margin-top: 36px;
    }

    .pp-content p,
    .pp-content li {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 575.98px) {
    .pp-banner {
        padding: 110px 0 44px;
    }

    .pp-lead {
        text-align: justify;
    }
}