body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #eee2e2;
    background: #050e13;
}

header {
    background: #12456e;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
}

nav {
    background: #12456e;
    padding: 0.5rem 0;
    text-align: center;
}

nav a {
    color: #07182b;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #050e13;
}

section h2 {
    color: #b3b7b9;
    font-size: 2rem;
    margin-bottom: 1rem;
}

section p {
    margin-bottom: 1rem;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.logo {
    height: 10vw;
    max-height: 140px;
    position: absolute;
    top: 2%;
    left: 5%;
}

@media (max-width: 768px) {
    .logo {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto;
        display: block;
    }
}