/* Base Styles */body {    background-color: #F7FAE2; /* Updated background color */    font-family: Helvetica;    font-size: 14pt;    list-style-type: disc;}/* Link Styles */A:link {    color: #782C10;    font-weight: bold;    text-decoration: none; /* Inherits no text-decoration from second style */}A:visited {    color: #71280C;    text-decoration: none; /* Ensures visited links have no underline */}A:hover {    color: #FF0000;    text-decoration: underline;}A:active {    color: #996633;    text-decoration: none; /* Ensures active links have no underline */}A {    text-decoration: none; /* Makes sure all links have no underline unless hovered */}/* Heading Styles */h1 {    font-family: Helvetica;    font-size: 20pt;    color: #CA6800;    font-weight: bold;}h2 {    font-family: Helvetica;    font-size: 18pt;    color: #CA6800;    font-weight: bold;}h3 {    font-family: Helvetica;    font-size: 16pt;    color: #CA6800;    font-weight: bold;}h4 {    font-family: Helvetica;    font-size: 14pt;    color: #CA6800;    font-weight: bold;}h5 {    font-family: Helvetica;    font-size: 12pt;    color: #CA6800;    font-weight: bold;}/* List Item and Paragraph Styles */li {    line-height: 80%;    margin-top: 10px; /* Updated unit for consistency */    margin-bottom: 10px; /* Adjusts space between list items for better readability, merged approach */}p {    margin: 40px;}/* Custom Class Styles */.archives a, .financial-statements a, .moral-reports a, .documentation a {    margin-bottom: 15px; /* Adjusts space below each link */    display: inline-block; /* Allows links to flow inline with text */}.archives li, .financial-statements li, .moral-reports li, .documentation li {    margin-bottom: 1em; /* Additional specificity for list items in classes */}/* Logo and Navigation Styles */.logo-container img {    display: block;    margin: 0 auto; /* Centers logo image */}nav a {    display: flex;    align-items: center;    gap: 10px; /* Space between icon and text */}.home-icon {    width: 53px;    height: 60px;}ul li a {    line-height: 1; /* Adjust the value as needed */}