/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #01010d;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: x-large;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    width: 130px;
    height: 130px;;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
}

nav ul li a:hover {
    background-color: #2f57ad;
    border-radius: 5px;
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 10px;
    border-radius: 10px;
}

.submenu li {
    padding: 8px 16px;
}

.submenu li a {
    color: #0f1897;
    font-size: 15px;
    white-space: nowrap;
}

nav ul li:hover .submenu {
    display: block;
}
.form-section {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #020354;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #020354;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background-color: #2f57ad;
}
/* Footer */
footer {
    background-color: #01020e;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 5%;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    
    
}

footer ul li {
    display: inline;
    margin-right: 15px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}
/* Top Banner */


/* Adjust body padding to account for the banner */
body {
    padding-top: 0;
    margin: 0;
}
