/* ---------- Base Layout ---------- */
body {
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem;
    background: #fafafa;
    color: #222;
}

/* ---------- Headings ---------- */
h1, h2, h3 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2.2rem;
    color: #111;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.3rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.6rem;
}

/* ---------- Paragraphs & Lists ---------- */
p {
    margin: 1rem 0;
}

ul {
    margin: 1rem 0 1rem 1.5rem;
}

li {
    margin: 0.4rem 0;
}

/* ---------- Links ---------- */
a {
    color: #005bbb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Blockquotes (if used) ---------- */
blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f0f0f0;
    border-left: 4px solid #999;
    font-style: italic;
}

/* ---------- Code / Preformatted ---------- */
pre, code {
    font-family: "Courier New", monospace;
    background: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* ---------- Images ---------- */
img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 6px;
}

/* ---------- Small Screens ---------- */
@media (max-width: 600px) {
    body {
        padding: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
