/* Base styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F0F2F5;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: #0056b3;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.language-switcher a {
    color: #FFD700;
}

/* Profile section */
.profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.profile img {
    flex-shrink: 0;
    width: 150px;
    height: 200px;
    border-radius: 10px;
    border: 2px solid #0056b3;
}

/* Main content */
main {
    padding: 0 20px;
}

section {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section h2 {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #0056b3;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li:not(:last-child) {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile img {
        margin-bottom: 20px;
    }
}
