body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
}

nav {
    background-color: #333;
    color: white;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

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

main {
    padding: 20px;
}

form {
    max-width: 500px; /* You can adjust the width as needed */
    text-align: center;
    margin: auto;
}

label,
input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
}

article {
    margin-bottom: 20px;
}


.form-container {
    justify-content: center;
    text-align: center;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    height: 100px; /* You can adjust this as needed */
    margin-right: 10px;
}

.logo-container h1 {
    font-size: 24px; /* You can adjust this as needed */
    margin: 0;
}


/* Existing CSS */

footer {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin-right: 20px; /* Adjust spacing as needed */
}

footer ul li a {
    text-decoration: none;
    color: #333; /* Choose a suitable color */
}

/* Rest of your CSS */

