body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #2c2c2c;
}

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

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

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background: #337ab7;
    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: #285e8e;
}

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

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

.banner-link:hover {
    background: #285e8e;
}

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