body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #004d99;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #003366;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #002244;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 2rem;
}

section h2 {
    color: #004d99;
    border-bottom: 2px solid #004d99;
    padding-bottom: 0.5rem;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

section ul li::before {
    content: '\2022';
    color: #004d99;
    font-weight: bold;
    position: absolute;
    left: 0;
}

footer {
    background-color: #004d99;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
