
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}
header, footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav ul li {
    margin: 0 10px;
}
nav ul li a {
    color: #FF9900;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
}
.language-switcher {
    text-align: center;
    padding: 10px;
    background-color: #111;
}
.language-switcher a {
    color: #FF9900;
    margin: 0 6px;
    font-weight: bold;
    text-decoration: none;
}
.language-switcher a:hover {
    text-decoration: underline;
}
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}
section h2 {
    color: #FF9900;
    font-size: 28px;
    margin-bottom: 20px;
}
section img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 8px;
}
form {
    display: flex;
    flex-direction: column;
}
form input, form textarea {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
}
form input[type="submit"] {
    background-color: #FF9900;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}
form input[type="submit"]:hover {
    background-color: #ffa733;
}
footer p {
    color: #888;
}

body { font-size: 14px; }
h2 { font-size: 20px; }