body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #005a87;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header h1, header nav {
    text-align: center;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

section {
    padding: 20px;
}

footer {
    background: #333333;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: relative; /* Changed from fixed to handle mobile scrolling better */
    bottom: 0;
    width: 100%;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    box-sizing: border-box;
}

input[type="submit"] {
    background: #005a87;
    color: #ffffff;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #0779e4;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 0;
    }

    header h1, nav {
        text-align: left;
        padding: 0 20px;
    }

    footer {
        position: relative; /* Adjust footer position on mobile */
    }
}
