body {
    font-family: Roboto, sans-serif!important;
    font-weight: 300!important;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #0056b3;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
}
header img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
}
header h1 {
    margin: 0;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #003d80;
    padding: 10px 0;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}
nav a:hover {
    text-decoration: underline;
}
section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #003d80;
    color: white;
    margin-top: 20px;
}
footer p {
    margin: 5px 0;
}