<br />    /* General body font style */<br />    body {<br />        font-family: sans-serif;<br />    }<br /><br />    /* Main Title: 20px, bold, centered */<br />    h1.main-title {<br />        font-size: 20px;<br />        font-weight: bold;<br />        text-align: center;<br />    }<br /><br />    /* Section Title: 18px, bold */<br />    h2.section-title {<br />        font-size: 18px;<br />        font-weight: bold;<br />    }<br /><br />    /* Paragraph Title: 16px, bold */<br />    h3.paragraph-title {<br />        font-size: 16px;<br />        font-weight: bold;<br />    }<br />    <br />    /* Sub-paragraph Title: 14px, bold */<br />    h4.sub-paragraph-title {<br />        font-size: 14px;<br />        font-weight: bold;<br />    }<br /><br />    /* Body Text: 14px, with two-character indent */<br />    p.body-text {<br />        font-size: 14px;<br />        text-indent: 2em; /* 2em is roughly equivalent to two characters */<br />        line-height: 1.6;<br />    }<br />    <br />    /* Contents box styling */<br />    .contents-container {<br />        background-color: #f5f5f5; /* Light grey background */<br />        padding: 15px 25px;<br />        margin-bottom: 30px;<br />        border-radius: 5px;<br />    }<br />    <br />    /* Styling for the Contents lists */<br />    .contents-container ol {<br />        padding-left: 20px;<br />    }<br />    .contents-container li {<br />        font-size: 14px;<br />        margin-bottom: 8px;<br />    }<br />    .contents-container a {<br />        text-decoration: none;<br />        color: #0056b3;<br />    }<br />    .contents-container a:hover {<br />        text-decoration: underline;<br />    }<br />