body {
    font-family: "Verdana", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #222222;
}

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

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

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

nav ul li {
    margin: 0 10px;
}

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

nav ul li a:hover {
    background: #31b0d5;
}

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

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

.banner-link:hover {
    background: #025aa5;
}

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: #0275d8;
    color: white;
    text-align: center;
    padding: 10px 0;
}
