body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-color: white;
    color: black;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 10vw;
}

.left,
.right {
    display: flex;
    flex-direction: column;
}

.left {
    max-width: 50%;
}

.left h1 {
    font-size: 1.8rem;
    font-weight: normal;
}

.left h1 strong {
    font-weight: bold;
}

.left p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.left small {
    font-size: 0.8rem;
}

.right a {
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    margin: 0.5rem 0;
}

.right a:hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-toggle {
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    margin: 0.5rem 0;
    cursor: pointer;
}

.dropdown-toggle:hover {
    text-decoration: underline;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    margin-left: 1rem;
}

.dropdown-menu a {
    font-size: 1.2rem;
    margin: 0.2rem 0;
    color: black;
    text-decoration: none;
}

.dropdown-menu a:hover {
    text-decoration: underline;
}

.show {
    display: flex;
}
