:root {
    --bg-color: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-color: #007aff;
    --section-bg: #f5f5f7;
    --border-radius: 12px;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1c1c1e;
        --text-primary: #f5f5f7;
        --text-secondary: #86868b;
        --accent-color: #0a84ff;
        --section-bg: #2c2c2e;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.subtitle {
    margin: 0;
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

section {
    background-color: var(--section-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--section-bg);
    color: var(--text-secondary);
    font-size: 14px;
}

code {
    background-color: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 600;
}

@media (prefers-color-scheme: dark) {
    code {
        background-color: rgba(255,255,255,0.1);
    }
}
