p {
    color: black;
    text-align: left;
    margin-left: 4em;
    margin-top: 0;
    line-height: 1.5em;
}

h1,
h2 {
    text-align: left;
}

.faqEntry {
    border-top: 2px solid black;
    display: flex;
    flex-direction: column;
    transition: .2s all;
}

.questionLine {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    padding: 1em 0;
    cursor: pointer;
    color: black;
    transition: .2s all;
}

.questionLine.expanded,
.questionLine.expanded .question {
    color: var(--gdtfOrange);
}

.questionLine .expander {
    width: 2em;
    height: 2em;
    min-width: 2em;
    min-height: 2em;
    border: 1px solid black;
    border-radius: 1em;
    cursor: pointer;
    position: relative;
}

.questionLine.expanded .expander {
    border-color: var(--gdtfOrange);
}

.questionLine .expander::before {
    display: block;
    position: absolute;
    content: '';
    top: calc(1em - 1.5px);
    left: calc(1em - 10.5px);
    width: 20px;
    height: 2px;
    background: currentColor;
}

.questionLine .expander::after {
    display: block;
    position: absolute;
    content: '';
    top: calc(1em - 10.5px);
    left: calc(1em - 1.5px);
    width: 2px;
    height: 20px;
    background: currentColor;
}

.questionLine.expanded .expander::after {
    display: none;
}

.questionLine .question {
    font-size: 1.3em;
    font-weight: 400;
    cursor: pointer;
    margin-left: 1em;
    text-align: left;
}

.answerLine {
    max-height: 0;
    overflow: hidden;
    transition: .2s all;
    opacity: 0;
    font-weight: 300;
}

.answerLine.expanded {
    max-height: 40em;
    opacity: 1;
}

.answerLine a {
    font-weight: 300;
    color: #e94a4a;
    text-decoration: none;
}