.faq-section {
    margin: 1.5rem 0;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    box-sizing: border-box;
    cursor: pointer;
    font-size: 0;
    padding: 2rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    position: relative;
}

.faq-letter {
    box-sizing: border-box;
    display: inline-block;
    font-size: 20px;
    font-weight: var(--font-weight-thick);
    width: 20px;
    vertical-align: top;
}

.faq-question {
    box-sizing: border-box;
    display: inline-block;
    font-size: 20px;
    font-weight: var(--font-weight-thin);
    padding-left: 15px;
    width: calc(100% - 55px);
    vertical-align: top;
}

.accordion .accordion-icon {
    position: absolute;
    line-height: 1;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.accordion .accordion-icon img {
    height: auto;
    max-width: 25px;
    transition: transform 0.2s;
    width: 100%;
}

.accordion.active .accordion-icon img {
    transform: rotate(180deg);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
    background-color: var(--main-color-very-light-gray);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    border-bottom: solid 1px var(--main-color-medium-gray);
    font-size: 16px;
    padding: 0 2rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel-interior {
    padding: 2rem 0;
}

.faq-answer {
    font-weight: var(--font-weight-thick);
}

.faq-answer .faq-answer-content {
    color: var(--main-gray-color);
    font-weight: var(--font-weight-thin);
}

@media (max-width: 900px) {
    .accordion {
        padding-right: calc(2rem + 35px);
    }
}