body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f9f9f9;
    color: #333;
}

header {
    text-align: center;
    padding: 40px;
    background-color: #004080;
    color: white;
    border-bottom: 2px solid #003060;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
    margin-top: 10px;
}

.contact-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

input:focus, textarea:focus {
    border-color: #004080;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 64, 128, 0.5);
}

button {
    background-color: #004080;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #003060;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #004080;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
