/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

/* Container for the content */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    margin-top: 20px;
    color: #333;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
}

/* List styling */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    text-align: center;
    margin-bottom: 10px;
}
