/* ========================================
   PROOFREADER - PRIVACY & TERMS STYLES
   Consistent with main landing page
======================================== */

:root {
    --primary-purple: #6F42CE;
    --primary-dark: #5732A3;
    --primary-light: #EFE7FC;
    --font-primary: 'Lato', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background: #FAFAFA;
}

/* ========================================
   HEADER
======================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #F0F0F0;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 20px;
    background: linear-gradient(90deg, #6F42CE 0%, #7B4FD6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-back {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.header-back:hover {
    color: var(--primary-dark);
}

/* ========================================
   MAIN CONTENT
======================================== */

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 32px 80px;
}

.page-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 48px;
}

.last-update {
    text-align: center;
    font-size: 14px;
    color: #888888;
    margin-bottom: 48px;
}

/* ========================================
   CONTENT SECTIONS
======================================== */

h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #444444;
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

ul {
    margin: 16px 0 16px 24px;
    padding: 0;
}

li {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 8px;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

strong, b {
    font-weight: 700;
    color: #333333;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #FFFFFF;
    padding: 40px 0;
    border-top: 1px solid #F0F0F0;
    margin-top: 40px;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 7px;
}

.footer-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(90deg, #6F42CE 0%, #7B4FD6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-purple);
    text-decoration: none;
}

.footer-copyright {
    font-size: 13px;
    color: #999999;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .container {
        padding: 32px 20px 60px;
    }

    .page-title {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .header-container,
    .footer-container {
        padding: 0 20px;
    }
}
