:root {
    --primary: #422afb;
    --primary-bg: #f0edff;
    --bg-light: #ffffff;
    --text-dark: #0a0b12;
    --text-muted: #6b7280;
    --border-light: #f3f4f6;
}

/* Document Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* Main Minimal Wrapper Layout */
.legal-wrapper {
    width: 100%;
    max-width: 720px;
}

/* Back Link Action Arrow */
.back-btn-box {
    margin-bottom: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Master Header Center Blocks */
.legal-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.legal-main-title span {
    color: var(--primary);
}

.date-stamp {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 48px;
}

.intro-summary-text {
    text-align: center;
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Content Container Blocks */
.content-sections-list {
    display: flex;
    flex-direction: column;
}

/* Single Component Visual Block Row with bottom separators */
.row-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.row-block:last-of-type {
    border-bottom: none;
}

/* Left Section Badge Structures */
.badge-number {
    background-color: var(--primary);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.badge-icon {
    background-color: var(--primary-bg);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Right Text Structural Segments */
.text-segment {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.text-segment h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.text-segment p {
    font-size: 14px;
    color: #4b5563;
    font-weight: 400;
}

.text-segment a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Unordered Lists styling for Privacy Section */
.text-segment ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.text-segment li {
    font-size: 14px;
    color: #4b5563;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.text-segment li::before {
    content: "•";
    color: var(--text-muted);
    font-size: 16px;
    font-weight: bold;
}

/* Universal Legal Footer Styling across both components */
.bottom-legal-notice {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 80px;
    padding-top: 24px;
}

.bottom-legal-notice a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}