/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Top Navigation */
.top-nav {
    background: transparent;
    padding: 12px 0 0 0;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.top-nav a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 6px;
}

.top-nav a:hover,
.top-nav a:focus {
    background: rgba(0, 86, 179, 0.08);
    outline: none;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .top-nav ul {
        gap: 12px;
        padding: 0 12px;
        flex-wrap: wrap;
    }

    .top-nav a {
        font-size: 0.95em;
        padding: 6px 10px;
    }
}

/* Divider below top-nav to separate from main content */
.top-nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    padding-bottom: 10px;
}

/* Centered Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    background-color: #0056b3;
    color: white;
    padding: 30px 10px;
}

header h1 {
    margin: 0;
    font-size: 2.8em;
}

header p {
    margin: 10px 0;
    font-size: 1.2em;
}

header a {
    color: white;
    text-decoration: underline;
}

/* Section Styles */
section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    &#chat {
        height: 350px;
    }

    iframe {
        width: 100%;
        height: 100%;
    }
}

section h2 {
    margin-top: 0;
    color: #0056b3;
    border-bottom: 3px solid #eaeaea;
    padding-bottom: 10px;
    font-size: 1.6em;
}

/* Article Styles */
article {
    margin-bottom: 20px;
}

article h3 {
    margin: 0;
    font-size: 1.3em;
    color: #333;
}

article span {
    font-weight: normal;
    color: #555;
    font-size: 1em;
}

article p {
    margin: 5px 0;
    font-size: 1.1em;
}

#employment article p {
    font-size: 0.9em;
    color: #666;
}

article ul {
    list-style-type: disc;
    margin: 10px 0 0 20px;
    padding: 0;
}

article ul li {
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 15px;
    background-color: #0056b3;
    color: white;
    margin-top: 30px;
    font-size: 1em;
}

footer a {
    color: white;
    text-decoration: underline;
}
