body {
    font-family: Arial, sans-serif;
    background: #35424a;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
header {
    background: #1e3d58;
    color: #fff;
    padding: 10px 0;
    border-bottom: 3px solid #000000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    width: 40px;
    height: auto;
}
header h1 {
    display: inline;
    font-size: 24px;
    float: left;
}
section.content {
    background-color: #fff;
    color: #333;
    padding: 30px;
    margin-top: 20px;
    text-align: left;
}
#content-text h2 {
    color: #1e3d58;
}
#content-text a {
    color: #1e3d58;
    text-decoration: none;
    font-weight: bold;
}
#content-text a:hover {
    text-decoration: underline;
}
footer {
    background: #35424a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer li {
    display: inline;
    padding: 0 10px;
}
footer a {
    color: #fff;
    text-decoration: none;
}