strong:after {
    content: " ";
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header-left {
    max-width: 70%;
}

/* Ensures all elements in header-left stack vertically */
.header-left h1, .header-left p {
    margin: 0;
}

.header-right {
    display: flex;
    align-items: flex-start;
}

.profile-picture {
    max-width: 160px; /* Adjust the size as needed */
    height: auto;
    border-radius: 50%; /* If you want to make it a circle */
    margin-left: 20px; /* Space between text and image */
}

.section h2 {
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.section h3 {
    margin-bottom: 0px;
}

/* ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin-bottom: 5px;
} */

.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #f1f1f1;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.language-switcher a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}
.language-switcher a:hover {
    text-decoration: underline;
}
.language-switcher svg {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}
.language-switcher a::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #333;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.language-switcher a:hover::after {
    opacity: 1;
}

@media print {
    .language-switcher {
        display: none;
    }
}