.dropdown {
    display: inline-block;
    width: 70%;
}


.dropdownButton {
    display: flex;

    background-color: #868DFC;
    border: #868DFC;
    color: #eee;

    font-family: sans-serif;
    font-size: clamp(1rem, 5vw, 1.5rem);
    text-align: center;
    padding-left: 30px;
    padding-right: 100px;
    align-items: center;
    box-sizing: border-box;
    border-radius: 20px 20px 0 0;

    min-height: 70px;
    height: fit-content;
    width: 100%;

    cursor: pointer;

}

.dropdownButton:hover {
    background-color: #6e77f8; 
}

.dropdownContent {
    display: flex;


    background-color: #eee;
    border-color: #eee;
    color: #444;

    font-family: sans-serif;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: clamp(1rem, 5vw, 1.5rem);
    align-items: center;
    box-sizing: border-box;

    /* 
    min-height: 100px;
    height: fit-content;
    width: 100%; */

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: max-height 0.24s ease;

}
.dropdownContent.show {
    max-height: 1000px;
    opacity: 1;
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}




.faq .dropdownContent {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: clamp(0.75rem, 3vw, 1rem); /* smaller than before */
    font-weight: 400;
}

.faq .dropdownButton {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 60px;
}

.faq .dropdownContent {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}
