/* ============================================================
   REMIND LEGAL — GENERAL CONTENT PAGE STYLESHEET
   Use for: blog posts, "how to start X" guides, service explainers
   Theme: cream/white + gold (#c9a15b), serif headings, pill CTAs
   Include once in <head>, works for unlimited pages of this type.
   ============================================================ */

:root {
    --rl-gold: #c9a15b;
    --rl-gold-dark: #a9803f;
    --rl-gold-soft: #f3e6ce;
    --rl-cream: #fbf8f2;
    --rl-white: #ffffff;
    --rl-ink: #2a241c;
    --rl-ink-muted: #6f6558;
    --rl-border: #e7dcc4;
    --rl-shadow: 0 10px 30px rgba(42, 36, 28, 0.08);
    --rl-radius: 14px;
    --rl-radius-pill: 999px;
}

.rl-page {
    color: var(--rl-ink);
    background: var(--rl-white);
    line-height: 1.7;
}

.rl-page a {
    text-decoration: none;
}

.rl-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HERO ---------- */
.rl-hero {
    border-bottom: 1px solid var(--rl-border);
    padding: 70px 0 1px;
    text-align: center;
}

.rl-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rl-gold-dark);
    font-weight: 700;
    margin-bottom: 14px;
}

/* ---------- SECTION WRAPPER ---------- */
.rl-section {
    padding: 20px 0;
}

.rl-section--tint {
    background: var(--rl-cream);
}

.rl-section__lede {
    font-size: 17px;
    color: var(--rl-ink-muted);
    margin: 0 0 28px;
}

/* ---------- CALLOUT / NOTE BOX ---------- */
.rl-callout {
    background: var(--rl-gold-soft);
    border-left: 4px solid var(--rl-gold);
    border-radius: 0 var(--rl-radius) var(--rl-radius) 0;
    padding: 22px 26px;
    margin: 28px 0;
    font-size: 15.5px;
}

.rl-callout strong {
    color: var(--rl-gold-dark);
}

/* ---------- CTA BUTTONS (pill shaped, matches site) ---------- */
.rl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rl-gold);
    color: var(--rl-white) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: var(--rl-radius-pill);
    border: none;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

.rl-btn:hover {
    background: var(--rl-gold-dark);
    transform: translateY(-1px);
}

.rl-btn--outline {
    background: transparent;
    color: var(--rl-gold-dark) !important;
    border: 1.5px solid var(--rl-gold);
}

.rl-btn--outline:hover {
    background: var(--rl-gold-soft);
}

/* ---------- STEP TIMELINE (for sequential processes) ---------- */
.rl-timeline {
    list-style: none;
    margin: 25px 0px;
    padding: 0;
    counter-reset: rl-step;
}

.rl-timeline__item {
    position: relative;
    padding: 0 0 25px 25px;
    border-left: 2px solid var(--rl-border);
    margin-left: 20px;
}

.rl-timeline__item:last-child {
    border-left-color: transparent;
    padding-bottom: 4px;
}

.rl-timeline__item::before {
    counter-increment: rl-step;
    content: counter(rl-step);
    position: absolute;
    left: -19px;
    top: 0;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: var(--rl-gold);
    color: var(--rl-white);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(201, 161, 91, 0.35);
}

.rl-timeline__title {
    font-size: 19px;
    margin: 4px 0 8px;
    color: var(--rl-ink);
}

.rl-timeline__body {
    font-size: 15.5px;
    text-align: justify;
    color: var(--rl-ink-muted);
    margin: 0;
}

/* ---------- CHECK / BENEFIT LIST ---------- */
.rl-list--check {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rl-list--check li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed var(--rl-border);
    font-size: 15.5px;
}

.rl-list--check li:last-child {
    border-bottom: none;
}

.rl-list--check i {
    color: var(--rl-gold);
    margin-top: 3px;
}

/* ---------- 2-COLUMN GRID (documents / services) ---------- */
.rl-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

/* ---------- INFO CARDS (timeline / fees etc.) ---------- */
.rl-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.rl-card {
    background: var(--rl-white);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    padding: 24px;
    box-shadow: var(--rl-shadow);
}

.rl-card h4 {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--rl-gold-dark);
}

.rl-card p {
    font-size: 15px;
    text-align: justify;
    color: var(--rl-ink-muted);
    margin: 0;
}

/* ---------- FAQ ACCORDION ---------- */

.rl-faq {
    margin-top: 20px;
}

.rl-faq details {
    background: var(--rl-white);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    margin-bottom: 12px;
    padding: 4px 22px;
}

.rl-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 8px 30px 16px 0;
    font-size: 13.5px;
    font-weight: 700;
    position: relative;
}

.rl-faq summary::-webkit-details-marker {
    display: none;
}

.rl-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 7px;
    font-size: 20px;
    color: var(--rl-gold);
    transition: transform 0.2s ease;
}

.rl-faq details[open] summary::after {
    transform: rotate(45deg);
}

.rl-faq__answer {
    padding: 0 0 18px;
    font-size: 15.5px;
    color: var(--rl-ink-muted);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .rl-hero {
        padding: 44px 0 36px;
    }

    .rl-section {
        padding: 40px 0;
    }

    .rl-container {
        padding: 0 18px;
    }

    .rl-grid-2 {
        grid-template-columns: 1fr;
    }

    .rl-timeline {
        margin-left: 6px;
    }

    .rl-timeline__item {
        padding-left: 48px;
    }

    .rl-timeline__item::before {
        width: 36px;
        height: 36px;
        font-size: 15px;
        left: -18px;
    }

    .rl-cards {
        grid-template-columns: 1fr;
    }

    .rl-faq summary {
        font-size: 15.5px;
    }
}

@media (max-width: 480px) {
    .rl-hero__title {
        font-size: 24px;
    }

    .rl-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ///  RIGHT SIDE BOX DESIGN  /////////// */
.rl-consult-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #eee2cc;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 20px 0px;
    box-shadow: 0 2px 10px rgba(201, 161, 91, 0.08);
}

.rl-avatar-stack {
    display: flex;
    flex-shrink: 0;
}

.rl-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a15b, #e3c383);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    margin-left: -10px;
}

.rl-avatar:first-child {
    margin-left: 0;
}

.rl-consult-text {
    font-family: serif;
    font-size: 15px;
    font-weight: 600;
    color: #2b2b2b;
}

.rl-consult-text a {
    color: #c9a15b;
    text-decoration: none;
}

.rl-consult-text a:hover {
    text-decoration: underline;
}

.rl-side-card {
    background: #ffffff;
    border: 1px solid #eee2cc;
    border-top: 3px solid #c9a15b;
    border-radius: 10px;
    padding: 18px 20px 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(201, 161, 91, 0.08);
}

.rl-side-title {
    font-family: serif;
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 12px;
}

.rl-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rl-side-list li {
    border-bottom: 1px solid #f5eedd;
}

.rl-side-list li:last-child {
    border-bottom: none;
}

.rl-side-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.4;
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.rl-side-list a i {
    color: #c9a15b;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.rl-side-list a:hover {
    color: #b78e46;
}

.rl-side-list a:hover i {
    transform: translateX(3px);
}

/* Collapsible accordion (pure CSS, no JS) */
.rl-acc-input {
    display: none;
}

.rl-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: serif;
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
    cursor: pointer;
    padding-bottom: 12px;
    margin: 0;
}

.rl-acc-head i {
    color: #c9a15b;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.rl-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.rl-acc-input:checked~.rl-acc-body {
    max-height: 300px;
    padding-bottom: 16px;
}

.rl-acc-input:checked~.rl-acc-head i {
    transform: rotate(180deg);
}

/* Sticky sidebar on scroll (desktop only) */
@media (min-width: 992px) {
    .col-3 {
        position: sticky;
        top: 10px;
        /* adjust to match your fixed header height, if any */
        align-self: flex-start;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    /* hide scrollbar visually but keep it scrollable if content overflows */
    .col-3::-webkit-scrollbar {
        width: 4px;
    }

    .col-3::-webkit-scrollbar-thumb {
        background: #eee2cc;
        border-radius: 4px;
    }
}

@media (max-width: 991px) {
    .col-3 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: 24px;
    }
}