/* =========================================
   PRIVACY POLICY & TERMS STYLES
   ========================================= */

/* --- 1. MINI-HERO SECTION --- */
.policy-hero {
    position: relative;
    padding: 10rem 0 6rem; /* Spacing for fixed header */
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: var(--dark-bg); /* Fallback */
}

/* Reusing Aurora Logic for consistency */
.policy-hero .aurora-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.policy-hero-content {
    position: relative; z-index: 2;
    max-width: 800px; margin: 0 auto;
}

.policy-hero h1 {
    font-size: 3.5rem; font-weight: 800; color: #fff;
    margin-bottom: 0.5rem; letter-spacing: -1px;
}

.policy-hero .last-updated {
    font-size: 0.9rem; color: rgba(255, 255, 255, 0.7);
    font-family: monospace; letter-spacing: 1px;
    text-transform: uppercase; display: inline-block;
    background: rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 20px;
}

/* --- 2. DOCUMENT CARD --- */
.policy-body {
    padding-bottom: 5rem;
    position: relative; z-index: 2;
    margin-top: -3rem; /* Slight overlap effect */
}

.policy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 10px 40px var(--card-shadow);
    max-width: 900px; margin: 0 auto;
    backdrop-filter: blur(10px); /* Subtle glass effect if on image */
}

/* Typography for Legal Text */
.policy-card h2 {
    font-size: 1.5rem; color: var(--heading-color);
    margin-top: 2.5rem; margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.policy-card h2:first-of-type { margin-top: 0; }

.policy-card p {
    font-size: 1rem; color: var(--light-subtle-text);
    line-height: 1.8; margin-bottom: 1.5rem;
}

.policy-card ul {
    margin-bottom: 1.5rem; padding-left: 1.5rem;
    color: var(--light-subtle-text);
}

.policy-card li { margin-bottom: 0.8rem; }

.policy-card strong { color: var(--heading-color); font-weight: 600; }

.policy-card a {
    color: var(--primary-blue); text-decoration: underline;
    font-weight: 500;
}
.policy-card a:hover { color: var(--accent-teal); }

/* Intro Text */
.intro {
    font-size: 1.1rem !important; color: var(--heading-color) !important;
    font-weight: 500;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .policy-hero { padding: 8rem 0 4rem; }
    .policy-hero h1 { font-size: 2.5rem; }
    .policy-card { padding: 2rem; margin-top: -2rem; width: 95%; }
}