body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
    background: #0056b3;
    color: white;
    padding: 10px;
    text-align: center;
}
h1 {
    margin: 0;
}
main {
    padding: 20px;
}
section {
    margin-bottom: 20px;
}
footer {
    text-align: center;
    padding: 10px;
    background: #0056b3;
    color: white;
}
.footer-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 5px 0; /* Adds some spacing between links */
}

.footer-links a:hover {
    text-decoration: underline;
}
