body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #004aad;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}
nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
.section {
    padding: 40px 20px;
}
.section img {
    max-width: 100%;
    height: auto;
}
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}
form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
}
footer {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 20px 0;
}