body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8fb;
    color: #333;
}

header {
    background: linear-gradient(to right, #003366, #00509e);
    padding: 20px;
    text-align: center;
    color: white;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #00509e, #0073e6);
    color: white;
}

.button {
    background: #003366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.content {
    padding: 50px 20px;
    text-align: center;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}