:root {
    --bg-color: #fafafa;
    --text-main: #111827;
    --text-muted: #4b5563;
    --accent: #000000;
}
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 4rem 1.5rem;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 680px; margin: 0 auto; }
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 0.5rem; margin-top: 0; }
.subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
h2 { font-size: 1.5rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 0.5rem; }
p { margin-bottom: 1.5rem; }
ul { margin-bottom: 2rem; padding-left: 1.5rem; }
li { margin-bottom: 0.75rem; }
.cta { text-align: center; margin-top: 0; margin-bottom: 4rem; }
.cta a {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--accent);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    transition: opacity 0.2s ease;
    cursor: pointer;
}
.cta a:hover { opacity: 0.8; }
.footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.bold { font-weight: 600; }
