/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
h1, h2, h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 20px;
}

h2 {
    font-size: 2em;
    margin-top: 20px;
}

h3 {
    font-size: 1.5em;
    margin-top: 15px;
}

/* Paragraph and List Styles */
p {
    font-size: 1em;
    margin-bottom: 10px;
}

ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
}

ul li {
    margin-bottom: 5px;
}

/* Link Styles */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Strong Tag Styles */
strong {
    color: #000;
}

/* Container Styles */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
}