/* =========================================
   PRIVACY POLICY PAGE STYLES
   ========================================= */
.legal-page {
    max-width: 800px; /* Slightly narrower for optimal reading length */
    margin: 0 auto;
    padding: 64px 24px 96px 24px;
    font-family: var(--font-base, 'Inter', sans-serif);
    color: var(--gray-900, #111827);
    line-height: 1.8; /* Increased line-height for dense text readability */
}

/* Header Section */
.legal-header {
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 2px solid #E5E7EB; /* Subtle divider line */
}

.legal-header__title {
    font-family: var(--font-display, 'Borel', sans-serif);
    font-size: 40px;
    color: var(--purple-600);
    margin: 0 0 12px 0;
}

.legal-header__date {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
}

/* Content Section */
.legal-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--gray-900, #111827);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #374151; /* Slightly softer than headings for contrast */
}

/* Lists */
.legal-content ul {
    list-style-type: disc; /* Turns the standard bullet markers back on */
    margin-bottom: 32px;
    padding-left: 24px; /* Ensures the bullets aren't pushed off the edge of the screen */
}

.legal-content li {
    display: list-item; /* Forces the browser to treat this as a bulleted item, overriding global resets */
    font-size: 16px;
    color: #374151;
    margin-bottom: 12px;
}

/* Links inside the text */
.legal-content a {
    color: var(--purple-550);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--purple-600);
}

/* Contact Block */
.legal-contact {
    margin-top: 64px;
    background-color: var(--purple-150, #FAF8FD); /* Pulls in your theme's subtle background */
    padding: 32px;
    border-radius: 16px;
}

.legal-contact h2 {
    margin-top: 0;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}