#collapsible_button {
    align-items: center;
    width: 375px;
    background-color: #FF931E;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    margin: auto;
    margin-top: 50px;
}

#collapsible_button h2 {
    font-size: 32px;
    color: white;
    margin: 0;
}


#collapsible_content {
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: space-evenly;
    align-items: stretch;
    max-height: 1000px;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        opacity 0.3s ease;
    opacity: 1;
}

#collapsible_content.hidden {
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.5s ease,
        opacity 0.3s ease 0.2s;
}

.collapsible_column {
    width: 25%;
    background-color: #FF931E;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
}

.collapsible_column h2 {
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.collapsible_column:first-child {
    border-radius: 16px 0 0 16px;
}

.collapsible_column:last-child {
    border-radius: 0 16px 16px 0;
}

.collapsible_column:nth-child(odd) {
    background-color: #1565C0;
    color: white;
}