/* =====================================
   SHARED LEGAL PAGES STYLES
   Applies to: Terms, Privacy, Refund
   ===================================== */

.legal-wrapper {
    max-width: 960px;
    margin: 40px auto;
    background: #ffffff;
    padding: 32px 36px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    color: #1f2937;
    line-height: 1.65;
}

/* Main page title */
.legal-wrapper h1 {
    font-size: 1.85rem;
    font-weight: 600;
    color: #0d3b66;
    margin-bottom: 4px;
}

/* Last updated / muted text */
.legal-wrapper .text-muted,
.legal-wrapper .last-updated {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 18px;
}

/* Intro paragraph */
.legal-wrapper > p {
    font-size: 0.92rem;
    color: #374151;
    margin-bottom: 14px;
}

/* Section headings */
.legal-wrapper h2,
.legal-wrapper h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 6px;
    color: #144272;
    position: relative;
    padding-left: 10px;
}

/* Orange accent bar */
.legal-wrapper h2::before,
.legal-wrapper h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 3px;
    height: 70%;
    background-color: #f77f00;
    border-radius: 2px;
}

/* Paragraphs under sections */
.legal-wrapper h2 + p,
.legal-wrapper h5 + p,
.legal-wrapper p {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 10px;
}

/* Lists */
.legal-wrapper ul {
    padding-left: 18px;
    margin-top: 6px;
    margin-bottom: 12px;
}

.legal-wrapper li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #374151;
}

/* Links */
.legal-wrapper a {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

.legal-wrapper a:hover {
    text-decoration: underline;
}

/* Footer (Privacy page) */
.legal-wrapper footer {
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 22px 18px;
    }

    .legal-wrapper h1 {
        font-size: 1.6rem;
    }

    .legal-wrapper h2,
    .legal-wrapper h5 {
        font-size: 1rem;
        margin-top: 18px;
    }
}
