body {
    background-color: #f0f0f0; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: sans-serif;
}

body * {
    box-sizing: border-box;
}

.body-inner-container {
    width: 80%; /* Adjust width as needed */
    max-width: 800px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border-radius: 8px; /* Slightly rounded corners */
    margin: 20px;
    overflow-y: auto; /* Adds scroll if content is too long */
    max-height: 90vh; /* Limits max height */
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

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

p, li {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

li ul {
    list-style-type: circle;
    margin-left: 20px;
}

strong {
    font-weight: bold;
    color: #333;
}

/* Optional: Add a subtle paper texture */
.body-inner-container {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9)); /* Subtle gradient */
}

/* Optional: Add a slight border for a more defined edge */
.body-inner-container{
    border: 1px solid #ddd;
}