.faq-section {
	padding: 30px 0 140px;
    max-width: 1320px;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
        padding: 0 20px 60px;
    }
}

.faq-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* FAQ ITEM */
.faq-item {
    border: 1px solid #CFE2E0;
	background: #F1F5F8;
	border-radius: 16px;
	overflow: hidden;
}

.faq-item-header {
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;

    @media screen and (max-width: 768px) {
        padding: 16px;
        gap: 20px;
    }
}

.faq-item-question {
	font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 21px;
    line-height: 120%;
    letter-spacing: -0.02em;
    vertical-align: middle;
    color: #013026;

    @media screen and (max-width: 768px) {
        font-size: 18px;
    }
}

.faq-item-toggle {
	background: none;
	border: none;
	font-size: 20px;
	font-weight: 500;
	color: #003d2e;
	cursor: pointer;
}

.faq-item-answer {
	/* display: none; */
    /* padding: 10px 85px 40px 30px; */
	font-family: 'Closer Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.01em;
	color: #003d2e;
    max-width: 535px;
    margin: 0 0 0 auto;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;

    @media screen and (max-width: 768px) {
        max-width: unset;
        margin: 0;
        /* padding: 0 26px 16px 16px; */
        font-size: 14px;
    }
}

.faq-item.open .faq-item-answer {
	/* display: block; */
    opacity: 1;
    max-height: 1000px;
    padding: 10px 85px 40px 30px;

    @media screen and (max-width: 768px) {
        padding: 0 26px 16px 16px;
    }
}

.faq-item.open .faq-item-toggle {
	transform: rotate(45deg);
}
