/* ========================================
   PRIVACY POLICY & LEGAL CONTENT VERTICAL LAYOUT
   Everything vertically below each other with proper spacing
   ======================================== */

/* REMOVE CHECK MARKS AND CUSTOM BULLETS */
.legal-content ul li::before,
.legal-content li::before,
.privacy-policy ul li::before,
.privacy-policy li::before {
    content: none !important;
    display: none !important;
}

/* USE STANDARD BULLETS */
.legal-content ul,
.privacy-policy ul {
    list-style-type: disc !important;
}

.legal-content ul li,
.privacy-policy ul li {
    list-style-type: disc !important;
    list-style-position: outside !important;
}

/* LEGAL CONTENT CONTAINER */
.legal-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

/* ALL HEADINGS - VERTICAL SPACING */
.legal-content h2,
.legal-content h3,
.privacy-policy h2,
.privacy-policy h3 {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
    width: 100% !important;
}

/* FIRST HEADING - NO TOP MARGIN */
.legal-content h2:first-child,
.privacy-policy h2:first-child {
    margin-top: 0 !important;
}

/* ALL PARAGRAPHS - VERTICAL SPACING */
.legal-content p,
.privacy-policy p {
    margin-bottom: 1.25rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
    width: 100% !important;
    line-height: 1.6 !important;
}

/* ALL LISTS - VERTICAL WITH LEFT INDENT */
.legal-content ul,
.privacy-policy ul,
.terms-content ul,
section ul {
    margin-left: 2rem !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    margin-top: 0.75rem !important;
    list-style-type: disc !important;
    display: block !important;
    width: calc(100% - 3.5rem) !important;
}

/* LIST ITEMS - VERTICAL SPACING */
.legal-content ul li,
.privacy-policy ul li,
.terms-content ul li,
section ul li {
    margin-bottom: 0.75rem !important;
    padding-left: 0.5rem !important;
    line-height: 1.6 !important;
    display: list-item !important;
}

/* ENSURE NO FLOATING OR INLINE DISPLAY */
.legal-content *,
.privacy-policy * {
    float: none !important;
}

/* SPECIFIC FIX FOR CONTENT SECTIONS */
.content-section,
.legal-content,
.privacy-policy {
    display: block !important;
    width: 100% !important;
}

.content-section ul,
.legal-content ul {
    margin-left: 2rem !important;
    padding-left: 1.5rem !important;
}

.content-section ul li,
.legal-content ul li {
    padding-left: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

/* REMOVE ANY GRID OR FLEX FROM CONTENT */
.legal-content > *,
.privacy-policy > * {
    display: block !important;
    width: 100% !important;
}

