body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: #2c3e50;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-style: italic;
    font-size: 1.2em;
}

.language-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
}

.language-toggle a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.language-toggle a.active {
    text-decoration: underline;
}

nav {
    background: #34495e;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

main section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: #2c3e50;
    margin-top: 0;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
}
