body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4e7d5;
}

header {
    background-color: #27242a;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-container {
    text-align: center;
}

header p {
    margin: 5px 0;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0;
}

.nav-menu {
    position: relative;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #27242a;
}

.nav-menu ul li {
    margin: 0 10px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.nav-menu ul li a:hover {
    background-color: #84b09b;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-menu ul {
        display: none;
        flex-direction: column;
    }

    #menu-toggle:checked + .menu {
        display: flex;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }
}

main {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1, h2 {
    font-family: 'Courier New', serif;
    color: #84b09b;
}

p, li {
    color: #27242a;
}

section {
    border-left: 5px solid #84b09b;
    padding-left: 15px;
    margin-bottom: 20px;
}

section h2 {
    border-bottom: 2px solid #C0C0C8;
    padding-bottom: 5px;
}

section ul {
    list-style-type: none;
    padding-left: 0;
}

section ul li {
    background-color: #f4e7d5;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

section ul li a {
    color: #27242a;
    text-decoration: none;
}

section ul li a:hover {
    text-decoration: underline;
}

button {
    background-color: #84b09b;
    border: none;
    color: white;
    padding: 5px 10px;
    margin-top: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #C0C0C8;
}

.details {
    display: none;
}

.details.active {
    display: block;
}

#sheet-container {
    margin-top: 20px;
}

.language-switcher {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}

.language-switcher img {
    width: 48px;
    height: 48px;
}

.language-options {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.language-options img {
    display: block;
    padding: 10px;
    cursor: pointer;
}

.language-options img:hover {
    background: #f4e7d5;
}

.language-switcher:hover .language-options {
    display: block;
}

.company-logo {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 10px;
}

.language-logo {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}
