.westfalia .faq_section1 input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.westfalia .faq_section1 {
    display: flex;
}

.westfalia .faq_section1 .col {
    flex: 1;
}

.westfalia .faq_section1 .col:last-child {
    margin-left: 1em;
}

/* Accordion styles */
.westfalia .faq_section1_tabs {
    /* border-radius: 8px; */
    overflow: hidden;

    /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
}

.westfalia .faq_section1_tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.westfalia .faq_section1_tab_label {
    display: flex;
    justify-content: space-between;
    padding-right: 0.5em;

    /* padding: 1em; */
    background: #164194;
    font-weight: bold;
    cursor: pointer;
    margin-right: 0;

    /* background-color: #ccc !important; */

    /* Icon */
}

.westfalia .faq_section1_tab_label:hover {
    background: #e30613;
}

.westfalia .faq_section1_tab_label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
    margin-top: 0.2em;
}

.westfalia .faq_section1_tab_content {
    font-family: Arial, sans-serif;
    max-height: 0;
    font-weight: 100;
    padding: 0 1em;
    color: #000;
    background: white;
    transition: all 0.35s;
}

.westfalia .faq_section1 input:checked + .faq_section1_tab_label {
    background: #e30613;
}

.westfalia .faq_section1 input:checked + .faq_section1_tab_label::after {
    transform: rotate(90deg);
}

.westfalia .faq_section1 input:checked ~ .faq_section1_tab_content {
    max-height: 200vh;
    padding: 1em;
}