.faq-section {
	margin: 0 auto;
	padding: 192px 60px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
	max-width: 1440px;
}

.faq-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	max-width: 566px;
}

.faq-title {
	font-size: 48px;
	line-height: 60px;
	font-weight: 400;
	letter-spacing: -1px;
	margin: 0;
}

.faq-subtitle {
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
	margin: 0;
}

.faq-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 764px;
	width: 100%;
}

.faq-item {
	width: 100%;
	border-top: 1px solid #E9EAEB;
	padding-top: 24px;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	text-align: left;
}

.faq-question span {
	flex: 1;
}

.faq-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin-top: 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-item.open .faq-answer {
	max-height: 500px;
	opacity: 1;
	margin-top: 12px;
}

.icon-minus {
	display: none;
}

.faq-item.open .icon-plus {
	display: none;
}

.faq-item.open .icon-minus {
	display: inline;
}