body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
}

.logo {
    max-width: 150px;
    height: auto;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background: #006699;
    margin: 0;
    padding: 10px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
}

nav ul li a:hover {
    background: #004d80;
}

.banner {
    text-align: center;
    background: #e8f4ff;
    padding: 20px 0;
}

.banner-link {
    text-decoration: none;
    color: white;
    background: #006699;
    padding: 10px 20px;
    border-radius: 5px;
}

.banner-link:hover {
    background: #004d80;
}

main {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
}

.page-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.content {
    margin: 20px 0;
    text-align: center;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
}
