/* GLOBAL STYLES */
body {
    font-family: "Times New Roman", Times, serif;
    background-color: #ffffff;
    color: #000000;
    margin: 10px 20px;
    line-height: 1.3;
}

/* LINK STYLES */
a {
    color: #0000EE;
    text-decoration: underline;
}

a:visited {
    color: #551A8B;
}

a.text-red {
    color: #FF0000;
}

a.text-red:visited {
    color: #B22222;
}

/* LAYOUT & TYPOGRAPHY */
.header-section {
    text-align: center;
    margin-bottom: 20px;
}

.header-logo {
    max-height: 80px;
    margin-bottom: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #000080;
    margin: 0;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

hr {
    border: 0;
    border-top: 1px solid #000000;
    margin: 15px 0;
}

.links-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.links-column {
    width: 48%;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    margin-bottom: 25px;
    font-size: 15px;
}

.link-title {
    font-weight: bold;
}

.link-date {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #000000;
    margin-top: 2px;
}

.services-info {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0;
    color: #000080;
}

.footer-note {
    font-size: 11px;
    margin-bottom: 15px;
}

.legal-section {
    font-size: 11px;
    margin-top: 10px;
}

.copyright {
    margin-top: 5px;
    font-weight: bold;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .links-container {
        flex-direction: column;
    }
    .links-column {
        width: 100%;
    }
    li {
        margin-bottom: 20px;
    }
}
