body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light background for contrast */
}

header {
    background-color: #004080; /* Dark blue header */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0073e6; /* Lighter blue for dropdown */
    min-width: 160px;
    z-index: 1;
}

nav .dropdown:hover .dropdown-content {
    display: block;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #004080; /* Matching blue for headings */
}

footer {
    background-color: #004080; /* Dark blue footer */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
}

form input, form textarea {
    padding: 10px;
    margin-top: 5px;
}

form button {
    margin-top: 10px;
    padding: 10px;
    background-color: #0073e6; /* Button color */
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #005bb5; /* Darker shade on hover */
}
