/* GLOBAL RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* NAV BAR */
.site-nav {
    background-color: #001f3f;
    padding: 15px 30px;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.site-nav ul li a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: linear-gradient(to bottom, #001f3f, #003366);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-logo img {
    width: 45px;
    height: 75px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* MAIN CONTENT */
.content {
    max-width: 1100px;
    margin: 40px auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    background-color: #001f3f;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section p {
    margin: 4px 0;
}

.footer-meta {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-meta a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-meta a:hover {
    text-decoration: underline;
}
