/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for centering content */
.container {
    width: 80%;
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header Styles */
h1, h2 {
    color: #0056b3;
}

h1 {
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
}

/* Paragraph and List Styles */
p {
    margin-bottom: 1em;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 0.5em;
}

/* Footer Styles */
.site-footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer p {
    margin: 10px 0 0;
    font-size: 0.9em;
}