/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.pp-wrap { padding: 56px 0 80px; background: #fff; }

/* Hero subtitle */
.pp-hero-sub {
    color: rgba(255,255,255,0.80);
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Dates bar */
.pp-dates-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 28px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
}

/* Sections */
.pp-section {
    margin-bottom: 32px;
}
.pp-section-head {
    margin-bottom: 12px;
}
.pp-section-head h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0;
}
.pp-section-body {
    padding: 0 0 0 0;
    border-top: 1px solid #e8edf7;
    padding-top: 14px;
}
.pp-section-body p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #262626;
    line-height: 1.8;
    margin-bottom: 12px;
}
.pp-section-body p:last-child { margin-bottom: 0; }
.pp-section-body a { color: #034B9F; text-decoration: none; }
.pp-section-body a:hover { text-decoration: underline; }
.pp-note {
    margin-top: 16px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px !important;
    color: #4a5568 !important;
    font-style: italic;
    padding: 10px 14px;
    background: #f8faff;
    border-left: 3px solid #034B9F;
    border-radius: 0 6px 6px 0;
}

/* Bullet list */
.pp-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}
.pp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f0f4fb;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #262626;
    line-height: 1.75;
}
.pp-list li:last-child { border-bottom: none; }
.pp-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #034B9F;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Contact card */
.pp-contact-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 8px;
    padding: 24px 24px 20px;
    margin-top: 20px;
}
.pp-contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}
.pp-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
}
.pp-contact-row:last-child { margin-bottom: 0; }
.pp-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #EBF3FF;
    color: #034B9F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
.pp-contact-row a { color: #034B9F; text-decoration: none; }
.pp-contact-row a:hover { text-decoration: underline; }

/* Last updated badge */
.pp-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF4EA;
    color: #b84110;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .pp-wrap { padding: 32px 0 56px; }
    .pp-dates-bar { gap: 12px; font-size: 12.5px; }
}
@media (max-width: 575.98px) {
    .pp-section-head h2 { font-size: 19px; }
    .pp-list li, .pp-section-body p { font-size: 16px; }
    .pp-dates-bar { flex-direction: column; gap: 6px; }
}
