
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}
.header {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo {
    font-size: 1.5em;
    font-weight: bold;
}
.header nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}
.header nav ul li {
    display: inline;
}
.header nav ul li a {
    color: white;
    text-decoration: none;
}
.hero {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.content {
    padding: 20px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form label {
    font-weight: bold;
}
form input, form textarea, form button {
    padding: 10px;
    font-size: 1em;
}
form button {
    background-color: #003366;
    color: white;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: #00509e;
}
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
}
