body {
    background: #001a33;
    color: #222328;
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

#navbar, .content-area, footer {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#navbar {
    background: rgba(20,24,44,.9);
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 2px solid white;
    color: #fff;
    display: flex;
    align-items: stretch; 
    justify-content: flex-start;
    padding: 0;
    position: relative;
    z-index: 100;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.nav_item {
    display: block;
    margin: 0;
    position: relative;
    flex: 1; 
}

.nav_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001a33;
    color: #fff;
    font-size: 0.96em;
    font-weight: bold;
    padding: 12px 2px;
    width: 100%;
    box-sizing: border-box;
    border-right: 2px solid white;
    text-decoration: none;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.2s;
    line-height: normal;
    margin: 0;
    white-space: nowrap;
}

.nav_item:last-child > a {
    border-right: none;
}

.nav_item a:hover {
    background: #b0b3b8;
    color: #222328;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 0; 
    background: #001a33;
    border: 2px solid white;
    margin-left: -2px;
    width: calc(100% + 2px); 
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.nav_item:hover .dropdown-menu,
.nav_item:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    border-right: none;
    border-bottom: 2px solid white;
    justify-content: center;
    text-align: center;
    padding: 10px 2px;
    font-size: 0.9em;
    white-space: normal;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    font-size: 2.0em; 
    color: #222328;
    text-shadow: 0 2px 8px #e2e4e6;
    letter-spacing: 2px;
    margin-top: 0.5em;
    margin-bottom: 0.6em;
}

.content-area {
    background: #e2e4e6;
    color: #222328;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 40px;
    border-bottom: 3px solid #001a33;
    position: relative;
    z-index: 1;
}

figure {
    margin: 0;
    padding: 0;
}

figcaption {
    text-align: center;
    font-size: 0.95em;
    color: #555;
    font-weight: bold;
}

footer {
    background: #001a33;
    color: #fff;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 2px solid white;
    margin-top: -3px;
    border-radius: 0;
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
    text-align: center;
    padding: 20px 40px 10px 40px;
    line-height: 1.2;
    position: relative;
    z-index: 2; 
}

.quote {
    color: #b0b3b8; 
}

.quote strong {
    color: #fff;
}

.footer-links a img {
    filter: brightness(1.3) grayscale(0.15);
    margin-right: 6px;
}

@media only screen and (max-width: 1200px) {
    #navbar, .content-area, footer {
        max-width: 98vw;
    }
    table {
        font-size: 0.97em;
    }
    .content-area {
        border-bottom-width: 2px;
    }
    .nav_item a {
        font-size: 0.8em;
        padding: 9.6px 2px;
    }
}
