/* ============================================
   PRIVACY POLICY PAGE — pp- prefix
   style.css ke end mein paste karo
   ============================================ */

/* ── Hero ── */
.pp-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--bg-light-green);
}
.pp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(2,27,94,0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 70%, rgba(254,148,70,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.pp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var( --green);
    line-height: 1.15;
    margin-bottom: 18px;
}
.pp-hero-title span { color: var(--yellow); }
.pp-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 14px;
    opacity: 0.8;
}

/* ── Content Section ── */
.pp-content-section {
    padding: 70px 0 80px;
    background: var(--white);
}

.pp-content-box {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Each Block ── */
.pp-block {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.pp-block:last-child { border-bottom: none; }

.pp-block-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    opacity: 0.50;
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    text-align: right;
    padding-top: 4px;
}

.pp-block-body { flex: 1; }

.pp-block-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var( --green);
    margin-bottom: 14px;
    line-height: 1.3;
}

.pp-block-body p {
    font-size: 0.88rem;
    color: var(--text-paragraph);
    line-height: 1.85;
    margin-bottom: 14px;
    opacity: 0.85;
}
.pp-block-body p:last-child { margin-bottom: 0; }

.pp-list {
    margin: 12px 0 14px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pp-list li {
    font-size: 0.87rem;
    color: var(--text-paragraph);
    line-height: 1.6;
    opacity: 0.85;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pp-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
    margin-top: 7px;
}

.pp-link {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}
.pp-link:hover { color: var( --green); }

/* ── CTA Strip ── */
.pp-cta-strip {
    background: var(--bg-light-yellow);
    padding: 50px 0;
}
.pp-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var( --green);
    margin-bottom: 8px;
}
.pp-cta-sub {
    font-size: 0.88rem;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .pp-hero { padding: 130px 0 60px; }
    .pp-cta-strip { text-align: center; }
    .pp-cta-strip .col-lg-auto { text-align: center; }
}
@media (max-width: 767.98px) {
    .pp-hero { padding: 110px 0 50px; }
    .pp-content-section { padding: 50px 0 60px; }
    .pp-block { flex-direction: column; gap: 12px; padding: 30px 0; }
    .pp-block-num { width: auto; text-align: left; font-size: 2rem; }
}