/* Reset some default browser styles */
body,
h1,
h2,
p,
ul {
    margin: 0;
    padding: 0;
}

/* Apply global styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Container for the content */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Heading styles */
h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #004080;
}

h2 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #004080;
}

/* Paragraph styles */
p {
    margin-bottom: 15px;
}

/* List styles */
ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 10px;
}

/* Link styles */
a {
    color: #004080;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }
}