body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #222;
    background: #fafafa;
}

header {
    background: #AA2222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.03em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.1rem;
}

.lang-switcher button {
    margin-right: 0.5rem;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
}
.lang-switcher button.active {
    font-weight: bold;
    text-decoration: underline;
}

.container {
    max-width: 860px;
    margin: auto;
    padding: 20px;
    background: white;
}

section {
    margin-bottom: 50px;
}

h2 {
    border-left: 5px solid #AA2222;
    padding-left: 10px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.profile {
    display: flex;
    gap: 20px;
    align-items: center;
}

.profile img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ccc;
}

ul {
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 0.9rem;
}

a {
    color: #AA2222;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.small-note {
    font-size: 0.9rem;
    color: #666;
}