:root {
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: "Fira Mono", "Consolas", "Menlo", "Monaco", monospace;
    --color-text: #333;
    --color-link-hover: #024b9b;
    --color-border: #eee;
    --max-width: 700px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text);
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem;
}

a {
    text-decoration: none;
    color: vat(--color-link);
}

.header {
    margin-bottom: 2rem;
}

.name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.content {
    margin-bottom: 2rem;
}

.content-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: #777;
}