body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5; /* Light gray background for better contrast */
}

.container {
    width: 80%;
    max-width: 800px;
    background-color: #ffffff; /* White background for content */
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for aesthetics */
}

h1, h2 {
    color: #333333; /* Dark gray text for headings */
    margin-bottom: 20px;
}

p, ul, li {
    color: #555555; /* Medium gray text for body content */
    line-height: 1.6;
}

ul {
    list-style-type: none; /* Remove bullets for lists */
    padding: 0;
}

ul li {
    margin: 5px 0;
}
