/* ============================================
   REFUND POLICY PAGE — rp- prefix
   style.css ke end mein paste karo
   ============================================ */

   .rp-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--bg-light-green);
}
.rp-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;
}
.rp-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;
}
.rp-hero-title span { color: var(--yellow); }
.rp-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 14px;
    opacity: 0.8;
}

.rp-content-section {
    padding: 70px 0 80px;
    background: var(--white);
}
.rp-content-box { display: flex; flex-direction: column; gap: 0; }

.rp-block {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.rp-block:last-child { border-bottom: none; }

.rp-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;
}

.rp-block-body { flex: 1; }

.rp-block-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var( --green);
    margin-bottom: 14px;
    line-height: 1.3;
}

.rp-block-body p {
    font-size: 0.88rem;
    color: var(--text-paragraph);
    line-height: 1.85;
    margin-bottom: 14px;
    opacity: 0.85;
}
.rp-block-body p:last-child { margin-bottom: 0; }

.rp-list {
    margin: 12px 0 14px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rp-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;
}
.rp-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
    margin-top: 7px;
}

.rp-link {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}
.rp-link:hover { color: var( --green); }

.rp-cta-strip { background: var(--bg-light-yellow); padding: 50px 0; }
.rp-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var( --green);
    margin-bottom: 8px;
}
.rp-cta-sub { font-size: 0.88rem; color: var(--black); margin: 0; line-height: 1.6; }

@media (max-width: 991.98px) {
    .rp-hero { padding: 130px 0 60px; }
    .rp-cta-strip { text-align: center; }
    .rp-cta-strip .col-lg-auto { text-align: center; }
}
@media (max-width: 767.98px) {
    .rp-hero { padding: 110px 0 50px; }
    .rp-content-section { padding: 50px 0 60px; }
    .rp-block { flex-direction: column; gap: 12px; padding: 30px 0; }
    .rp-block-num { width: auto; text-align: left; font-size: 2rem; }
}