body {
    font-family: tahoma, arial, helvetica, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1, h2, h3 {
    color: #004b87; /* Dark Blue from logo */
}
h1 {
    font-size: 22px;
    text-align: center;
    color: #006847; /* Green from logo */
}
h2 {
    font-size: 18px;
    border-bottom: 2px solid #006847; /* Green from logo */
    padding-bottom: 5px;
    margin-top: 20px;
}
h3 {
    font-size: 16px;
    margin-top: 15px;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
li::before {
    content: "•";
    color: #004b87; /* Dark Blue from logo */
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
    position: absolute;
}
strong {
    color: #004b87; /* Dark Blue from logo */
}