body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #008ECC;
    color: #333;
}

h1 {
    text-align: center;
    color: #444;
    margin-top: 20px;
    font-size: 2.5em;
}

.banner {
    height: 60px; 
    background: linear-gradient(90deg, rgb(85, 85, 85), rgb(130, 130, 130)); /* Gradient background */
    width: 100%; 
    color: #89cff0; 
    font-size: 35px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 20px; 
    box-sizing: border-box; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: sticky; /* Makes the banner stick to the top */
    top: 0; 
    z-index: 1000; /* Ensures it stays above other elements */
}

.spaced-span {
    flex: 1; 
    text-align: center; 
}

.spaced-span a {
    color: #89cff0; 
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth color change */
}

.spaced-span a:hover {
    color: white; /* Highlight link on hover */
    text-decoration: underline; /* Add underline on hover */
}

.Logo {
    display: block;
    margin: 30px auto;
    max-width: 120px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content h2, .content h3 {
    color: #444;
    margin-bottom: 15px;
}

.content p, .content ul {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}