/* Base resets and system font stack */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fcfcfc;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Headings */
h1, h2, h3 {
    color: #111111;
    line-height: 1.25;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Images and Media */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Lists and paragraphs */
p, ul, ol {
    margin-bottom: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

/* Simple Button Styling */
button, .button {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #0052a3;
}

/* Footer spacing */
footer {
    margin-top: 3em;
    padding-top: 1em;
    border-top: 1px solid #eeeeee;
    font-size: 0.9rem;
    color: #666666;
}