/* ═══════════════════════════════════════════════════════════════
   MCAI LABS - PRIVACY PAGE STYLES
   Legal content pages
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */

.hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 80px 60px;
    background: var(--bg);
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -2.4px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 24px;
    letter-spacing: -0.16px;
}

/* ─────────────────────────────────────────────────────────────
   CONTENT
   ───────────────────────────────────────────────────────────── */

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.48px;
    line-height: 32px;
    margin-bottom: 16px;
    margin-top: 48px;
    color: var(--text-primary);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 26px;
    letter-spacing: -0.16px;
    margin-bottom: 16px;
}

.content-section a {
    color: var(--accent-blue, #3b82f6);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */

@media (max-width: 968px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -1.5px;
    }

    .content-section {
        padding: 40px 20px 60px;
    }

    .content-section h2 {
        font-size: 20px;
        margin-top: 32px;
    }
}
