/* ── privacy-policy.css → css/privacy-policy.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ── LAYOUT ── */
.pp-main { padding: 2.5rem 0 3.5rem; }
.pp-container {
    max-width: 100%;
    padding: 0 1.5rem;
}

/* ── CARD ── */
.pp-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
}
.pp-card::before { content: ''; display: block; height: 4px; background: var(--G); }

.pp-card-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.8rem; background: var(--G);
}
.pp-card-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}
.pp-card-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.pp-card-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .05rem; }

/* ── CARD BODY ── */
.pp-card-body { padding: 2rem 2.2rem; }

/* ── SECTION ── */
.pp-section { margin-bottom: 0; }

.pp-section-title {
    display: flex; align-items: center; gap: .55rem;
    font-size: .88rem; font-weight: 800; color: var(--blue);
    margin-bottom: .9rem; padding-bottom: .5rem;
    border-bottom: 2px solid var(--xpale);
}
.pp-section-title i { font-size: .88rem; flex-shrink: 0; }

.pp-section p {
    font-size: .92rem; color: var(--t2); line-height: 1.95;
    margin-bottom: .75rem;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section strong { color: var(--t1); font-weight: 700; }
.pp-section a {
    color: var(--blue); font-weight: 600; text-decoration: none;
    transition: color .2s;
}
.pp-section a:hover { text-decoration: underline; color: var(--mid); }

/* bullet list */
.pp-list {
    list-style: none; margin: .5rem 0 .85rem; padding: 0;
    display: flex; flex-direction: column; gap: .45rem;
}
.pp-list li {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .9rem; color: var(--t2); line-height: 1.75;
}
.pp-list li::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--G); flex-shrink: 0; margin-top: .52rem;
}

/* divider */
.pp-divider {
    height: 1px; background: var(--pale);
    margin: 1.8rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .pp-card-body { padding: 1.4rem; }
    .pp-divider   { margin: 1.3rem 0; }
}
@media print {
    .pp-card { box-shadow: none; border: 1px solid #ccc; }
    .pp-divider { border-top: 1px solid #ccc; background: none; }
}