body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e2e2e2;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #0033e7;
    color: #e2e2e2;
    padding: 20px 0;
}

.logo {
    width: 100px; /* Adjust as needed */
    height: auto;
}

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

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

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

section {
    padding: 50px 0;
}

section h2 {
    text-align: center;
}

section p {
    text-align: center;
}

section ul {
    text-align: center;
}

footer {
    background-color: #0033e7;
    color: #e2e2e2;
    padding: 20px 0;
    text-align: center;
}
