/* Meyer Reset - http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 | License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* Base Styles */
:root {
    --primary-blue: #00AEEF;
    --dark-blue: #003087;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    font-family: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 1.6;
}
/* Layout */
#centeredBG {
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    min-height: 100vh;
}
#wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
}
#masthead {
    margin: 20px 0;
    background-color: var(--white);
    text-align: center;
    border-radius: 5px;
}
#top_nav {
    margin: 20px 0;
    padding: 10px;
    background: linear-gradient(135deg, #1A2A44, #2A3A5A); /* Updated to match logo blue */
    display: flex;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
#container {
    display: flex;
    gap: 25px;
    margin: 20px 0;
}
#left_column {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
#left_col, #left_col2 {
    padding: 20px;
    border: 1px solid #D3D3D3;
    background-color: var(--light-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
#page_content2 {
    border: 1px solid #D3D3D3;
    padding: 25px;
    background-color: var(--light-gray);
    flex: 1;
    text-align: justify;
    color: var(--gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
#footer {
    margin: 20px 0 0;
    padding: 10px;
    background-color: #E8ECEF;
    text-align: center;
    border-radius: 5px;
}
/* Typography */
h1.masthead {
    color: var(--dark-blue);
    font-size: 2em;
    font-weight: bold;
}
h2 {
    padding: 10px;
    border: 1px solid var(--gray);
    color: #000000;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    background-color: #E8ECEF;
    text-align: center;
    border-radius: 5px;
}
h3 {
    color: var(--gray);
    text-align: center;
    font-size: 1.4em;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--primary-blue);
    padding-bottom: 5px;
    margin: 20px 0;
}
h4, h5 {
    color: var(--dark-blue);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}
#page_content2 h5 {
    margin-top: 15px;
    color: var(--dark-blue);
    font-size: 1.2em;
    font-weight: 600;
}
h6 {
    color: var(--dark-blue);
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, var(--dark-blue), var(--primary-blue)) 1;
}
/* Links */
h3 a, .docList a, .content2 a, .address a, .courtDocLink a, .contact-list a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: #0088C2;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}
h3 a:hover, .docList a:hover, .content2 a:hover, .address a:hover, .courtDocLink a:hover, .contact-list a:hover {
    color: #0088C2;
    text-decoration: none;
}
/* Navigation */
#button1, #button2, #button3, #button4 {
    padding: 10px 20px;
    background-color: var(--gray);
    color: var(--white);
    border-radius: 5px;
    transition: all 0.3s ease;
}
#button1:hover, #button2:hover, #button3:hover, #button4:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#button1:focus, #button2:focus, #button3:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
.menuText a {
    color: var(--white);
    text-decoration: none;
    font-size: 1em;
}
.menuText a:hover {
    color: #E8ECEF;
}
/* Content */
.docList {
    color: var(--gray);
    margin: 10px 0;
    font-size: 1em;
}
.courtDocLink {
    color: var(--gray);
    margin: 6px 0;
    font-size: 1em;
    font-weight: 500;
    list-style-type: disc;
    margin-left: 20px;
    padding: 5px 0;
}
.contact-list {
    list-style: none;
    margin: 10px 0 20px 20px;
    color: var(--gray);
    font-size: 1em;
}
.contact-list li {
    margin: 5px 0;
}
.contact-list strong {
    font-weight: 700;
}
.content2 {
    color: var(--gray);
    font-size: 1em;
}
.content2.space-below {
    margin-bottom: 20px;
}
.content2.space-above {
    margin-top: 20px;
}
.content2.centered {
    text-align: center;
}
#left_col2 .content2 strong {
    font-weight: 700;
}
.footer {
    font-size: 0.9em;
    color: var(--gray);
}
.address {
    color: var(--gray);
    font-size: 0.9em;
    margin-top: 5px;
    overflow-wrap: break-word;
    word-break: break-word;
}
#left_col2 .address span {
    font-size: 12px;
}
/* Specific Elements */
.last-updated {
    text-align: right;
    color: #000000;
    font-size: 12px;
}
.auto-style2 {
    display: block;
    margin: 0 auto;
}
/* Accessibility */
a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
/* Responsive Design */
@media (max-width: 1000px) {
    #wrapper {
        padding: 15px;
    }
    #container {
        flex-direction: column;
    }
    #left_column {
        width: 100%;
    }
    #left_col2 {
        width: auto;
    }
}
@media (max-width: 600px) {
    #top_nav {
        flex-direction: column;
        gap: 10px;
    }
    #button1, #button2, #button3 {
        width: 100%;
        box-sizing: border-box;
    }
    h6 {
        font-size: 1.3em;
    }
    h3, h4, h5 {
        font-size: 1.2em;
    }
}
/* Print Styles */
@media print {
    #top_nav, #footer {
        display: none;
    }
    #container {
        flex-direction: column;
        box-shadow: none;
        border: none;
    }
    a[href]::after {
        content: " (" attr(href) ")";
    }
}