.faqSection {
    padding: 20px;
    max-width: 600px;
}

.faqItem {
    margin-bottom: 20px;
}

.question {
    width: 100%;
    padding: 10px;
    text-align: left;
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.question:hover {
    background-color: #DBAA6F;
}

.answer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-top: 5px;
}

.answer > p {
    margin: 0 8px;
}

.faqItem.active .answer {
    max-height: fit-content;
    padding: 10px;
}

.answer #specialButton {
	background-color: #31928F;
	color: whitesmoke;
	min-width: fit-content;
}

.answer #specialButton:hover {
	background-color: black;
	color: whitesmoke;
}