body {
    font-family: Arial, sans-serif;
}
header, footer {
    background-color: #f8f9fa;
    padding: 10px 20px;
    text-align: center;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 10px;
}
nav ul li a {
    text-decoration: none;
    color: #007bff;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    nav ul.menu li {
        float: none;
        width: 100%; /* Make menu items stack vertically on small screens */
    }
}

.hero {
    text-align: center;
    padding: 20px;
    background-color: #eef;
    margin-bottom: 20px;
}
.hero h2 {
    color: #345;
}
.hero p {
    color: #567;
}
