body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.banner {
    background-color: #FFC107;
    color: #000;
    text-align: center;
    padding: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}
header {
    background: #535353d5;
    color: white;
    padding: 1rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
header img {
    height: 100px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c2c2c;
    color: white;
    padding: 0.5rem 1rem;
}
.nav-buttons {
    display: flex;
    gap: 15px;
}
.nav-buttons a {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem;
}
.nav-buttons a:hover {
    text-decoration: underline;
}
.language-switch {
    display: flex;
    gap: 10px;
}
.language-switch button {
    background: #535353d5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 5px;
}
.language-switch button:hover {
    background: #646464d5;
}
.language-switch img {
    height: 20px;
    width: auto;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #535353d5;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
