/* ==========================================================================
   css/pages/privacy-policy.css
   CONTEXT: Legal & Compliance Layout
   ========================================================================== */

/* --- 1. Header Section --- */
.legal-hero {
    padding-top: calc(var(--header-height) + 100px);
    padding-bottom: 60px;
    background-color: var(--bg-color);
}

.legal-header-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-date {
    font-family: 'Courier New', monospace;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 20px;
}

.legal-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.legal-line::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--accent);
    animation: lineLoad 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

@keyframes lineLoad { to { width: 100%; } }

/* --- 2. Body Content --- */
.legal-body-section {
    padding-top: 60px;
    padding-bottom: 160px;
    background-color: var(--bg-color);
}

.legal-container {
    max-width: 800px; /* Constrained width for optimal reading experience */
    margin: 0 auto;
}

.legal-content {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Typography Overrides for Legal Text */
.intro-text {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.6;
}

.legal-content h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.5rem;
    margin-top: 60px;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--accent); /* Brand accent marker */
    line-height: 1.2;
}

.legal-content p { margin-bottom: 25px; }

.legal-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style: none;
}

.legal-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

/* Custom Bullet Points */
.legal-content li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 6px; height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}

.legal-content a {
    color: var(--text-main);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}
.legal-content a:hover { color: var(--accent); }

.legal-content address {
    font-style: normal;
    background: #111; /* Slight differentiation from bg-color */
    padding: 30px;
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-hero { padding-top: 120px; }
    .text-hero-small { font-size: 3rem; }
    .intro-text { font-size: 1.1rem; }
}