:root {
    --bg-color: #f7f7f7;
    --text-color: #333;
    --accent-color: #c57e00;
    --footer-color: #555;
    --line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1e1e1e;
        --text-color: #e0e0e0;
        --accent-color: #ffa500;
        --footer-color: #888;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Courier New", Courier, monospace;
    font-size: var(--font-size);
    line-height: var(--line-height);
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

h1, h2, h3 {
    color: var(--text-color);
}

.section-header {
    margin-top: 2rem;
    color: var(--accent-color);
}

.indent {
    margin-left: 2rem;
}

a {
    color: #d38d00;
    text-decoration: underline;
    font-weight: bold;
}

a:hover, a:focus {
    color: #ff9900;
    text-decoration-thickness: 2px;
}

footer {
    font-size: 0.8rem;
    margin-top: 2rem;
    color: var(--footer-color);
    text-align: center;
}

.no-tel {
    text-decoration: none;
    color: var(--footer-color);
    pointer-events: none;
    user-select: none;
}