/* Simple Anki — Legal Pages Stylesheet */

:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --text-secondary: #555555;
    --accent: #0071e3;
    --border: #e5e5e5;
    --card-bg: #f9f9f9;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1a1a1a;
        --text: #f0f0f0;
        --text-secondary: #a0a0a0;
        --accent: #4db8ff;
        --border: #333333;
        --card-bg: #242424;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    padding: 24px 16px 48px;
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

p {
    margin-bottom: 12px;
    color: var(--text);
}

.effective-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 12px;
    padding-left: 24px;
}

li {
    margin-bottom: 6px;
}

.contact-info {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 4px;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}
