/* General Body and Layout */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f4f7f6;
}

/* Headings */
h1, h2, h3 {
    color: #004d7f;
    font-weight: 600;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-top: 1.5em;
    border-left: 5px solid #005a9c;
    padding-left: 10px;
}

h3 {
    font-size: 1.5em;
    margin-top: 1.2em;
    color: #005a9c;
}

/* Paragraphs and Emphasis */
p {
    margin-bottom: 1em;
}

p em {
    display: block;
    text-align: center;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 1em;
}

p strong {
    color: #000;
}

/* Lists - Ordered and Unordered */
ul, ol {
    margin: 1em 0 1em 2em;
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

ul li strong, ol li strong {
    color: #004d7f;
}

/* Call-to-action or important notes */
hr {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2em 0;
}

.conclusion {
    background-color: #e6f7ff;
    border-left: 5px solid #005a9c;
    padding: 1.5em;
    margin: 2em 0;
}

.conclusion p {
    margin: 0;
}

.disclaimer {
    font-size: 0.9em;
    color: #777;
    text-align: center;
    margin-top: 2em;
}

/* For better readability on smaller screens */
@media (max-width: 768px) {
    body {
        padding: 1em;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.7em;
    }
    h3 {
        font-size: 1.3em;
    }
}