.faq-section {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.faq-section h2 {
	all: unset;
    text-align: center;
    color: #2281cf;
    margin-bottom: 20px;
	border-bottom: none !important;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e2e2e2;
	border-radius: 4px;
	border-bottom: 2px solid #0086e4;
}

.faq-question {
    background-color: #f9f9f9;
	color: #222a32;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: #2281cf;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 15px;
    background-color: #ffffff;
    border-top: 1px solid #e2e2e2;
}

.faq-answer p {
    margin: 0;
	font-size: 15px;
	text-align: left;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
    padding: 15px;
}
