
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f7f7f7;
}

header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.content, .contact {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input, .contact textarea {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
}

.contact button {
    padding: 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}
