body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
header .logo {
    width: 150px;
    height: 150px;
    filter: brightness(0) invert(1);
}
header h1, header h2 {
    margin: 0;
}
main {
    padding: 1rem;
}
section {
    margin-bottom: 1.5rem;
}
section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    list-style: none;
    white-space: nowrap; /* Prevent automatic line breaks */
}
section ul li {
    flex: 0 1 auto;
    margin-bottom: 0.5rem;
    text-align: left;
}
a {
    color: #000099;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
form {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
form input[type="text"] {
    padding: 0.5rem;
    font-size: 1rem;
}
form button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}
form button:hover {
    background: #555;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
}