/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Title and Headings */
h1 {
    font-size: 36px;
    text-align: center;
    color: #2d7d8c;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
    font-size: 28px;
    color: #444;
    border-bottom: 2px solid #2d7d8c;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraph and Lists */
p {
    font-size: 18px;
    margin-bottom: 20px;
}

ol, ul {
    font-size: 18px;
    margin-left: 40px;
}

li {
    margin-bottom: 10px;
}

/* Strong Text */
strong {
    color: #2d7d8c;
}

/* Links (if any in future updates) */
a {
    color: #2d7d8c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout */
body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Box Styling */
ol, ul {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

