body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    background-image: url('banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

hr {
    border: 0;
    height: 2px;
    background: white;
    margin: 20px 0;
    width: 80%;
}

p {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

h2 {
    color: lightblue;
    text-align: center;
    margin: 30px 0 15px;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

ul li {
    margin: 10px 0;
}

ul li a {
    color: lightblue;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #ff9900;
}

footer {
    background-color: rgba(0, 51, 102, 0.8);
    color: white;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}