<br />        /* 3. General body text style */<br />        body {<br />            font-family: sans-serif;<br />            font-size: 14px;<br />            line-height: 1.6;<br />        }<br /><br />        /* 1 & 2. Title style: Bold, 26px font size, Centered */<br />        h2.main-title {<br />            font-weight: bold;<br />            font-size: 26px;<br />            text-align: center;<br />        }<br />        <br />        /* 1. Section heading style: Bold */<br />        h3 {<br />            font-weight: bold;<br />            font-size: 20px;<br />            margin-top: 30px;<br />        }<br /><br />        /* 3. Paragraph style: First line indent by 2 characters */<br />        p {<br />            text-indent: 2em; /* 2em is a standard 2-character indent */<br />        }<br />        <br />        /* 4. Style for the Contents navigation: Light grey background */<br />        #contents {<br />            background-color: #f2f2f2; /* Light grey fill */<br />            padding: 15px 20px; /* Add some space inside the box */<br />            border-radius: 5px; /* Optional: soften the corners */<br />            margin-bottom: 20px;<br />        }<br />        #contents h3 {<br />            margin-top: 0; /* Remove extra top margin for the "Contents" title */<br />        }<br />        #contents ul {<br />            list-style-type: none;<br />            padding-left: 0;<br />        }<br />        #contents ul li a {<br />            text-decoration: none;<br />            color: #007bff; /* Standard link color */<br />            font-size: 16px;<br />        }<br />        #contents ul li a:hover {<br />            text-decoration: underline;<br />        }<br />        <br />        /* Style for inserted images */<br />        .guarantee-image {<br />            max-width: 100%;<br />            height: auto;<br />            display: block;<br />            margin: 20px auto;<br />            border: 1px solid #ddd;<br />            border-radius: 4px;<br />        }<br />    