/* General Reset */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, blockquote {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
    color: #222;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

h2 {
    font-size: 30px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

h3 {
    font-size: 24px;
    color: #444;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px dashed #0066cc;
}

a:hover {
    color: #004999;
    border-bottom: 1px solid #004999;
}

/* Paragraphs */
p {
    margin-bottom: 20px;
}

/* Lists */
ul, ol {
    margin: 20px 0;
    padding-left: 40px;
}

li {
    margin-bottom: 10px;
}

/* Blockquotes */
blockquote {
    font-style: italic;
    color: #666;
    border-left: 4px solid #ccc;
    padding-left: 15px;
    margin: 20px 0;
}

/* Code */
code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 3px;
    color: #d14;
}

pre {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f4f4;
    padding: 10px;
    overflow-x: auto;
    border-radius: 5px;
    line-height: 1.4;
}

/* Footer */
footer {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        font-size: 16px;
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }
}
