/* ─── Page container ─────────────────────────────────────────── */
.pp-container {
    max-width: 860px;
    margin: 2rem auto 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    font-family: inherit;
    color: #222;
    line-height: 1.7;
}

/* ─── Back button ─────────────────────────────────────────────── */
.pp-back-button {
    background: none;
    border: none;
    color: var(--color-primary, #0078d4);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pp-back-button:hover {
    text-decoration: underline;
}

/* ─── Header ──────────────────────────────────────────────────── */
.pp-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.pp-logo {
    height: 70px;
    width: 70px;
    margin-bottom: 1rem;
}

.pp-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111;
    letter-spacing: 0.03em;
}

.pp-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.pp-meta {
    font-size: 0.875rem;
    color: #777;
    margin: 0;
}

/* ─── Body ────────────────────────────────────────────────────── */
.pp-body {
    font-size: 0.95rem;
}

/* ─── Sections ────────────────────────────────────────────────── */
.pp-section {
    margin-bottom: 2.25rem;
}

.pp-section p {
    margin-bottom: 0.85rem;
}

.pp-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary, #0078d4);
    margin-bottom: 0.75rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #e8e8e8;
}

.pp-subsection-title {
    font-size: 0.975rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ─── Lists ───────────────────────────────────────────────────── */
.pp-list {
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
}

.pp-list li {
    margin-bottom: 0.35rem;
}

.pp-list-alpha {
    list-style-type: lower-alpha;
}

/* ─── Data sharing parties ────────────────────────────────────── */
.pp-share-item {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-primary, #0078d4);
}

.pp-share-item p {
    margin-bottom: 0.25rem;
}

.pp-share-party {
    font-weight: 600;
    color: #333;
}

/* ─── Contact card ────────────────────────────────────────────── */
.pp-contact-card {
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0 1.25rem;
}

.pp-contact-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.pp-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-contact-list li {
    margin-bottom: 0.4rem;
    font-size: 0.925rem;
}

.pp-contact-label {
    font-weight: 600;
    margin-right: 0.4rem;
    color: #444;
}

/* ─── Links ───────────────────────────────────────────────────── */
.pp-body a,
.pp-contact-card a {
    color: var(--color-primary, #0078d4);
    text-decoration: none;
}

.pp-body a:hover,
.pp-contact-card a:hover {
    text-decoration: underline;
}

/* ─── Version footer ──────────────────────────────────────────── */
.pp-version {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .pp-container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 1.25rem;
    }

    .pp-title {
        font-size: 1.4rem;
    }
}
