.faq {
	background-color: var(--color-bg-dark);
	padding: var(--page-paddingYB) var(--page-padding);
	color: white;
}

.faq__header {
	color: white;
}

.faq__header h2 {
	margin-bottom: 24px;
}
.faq__header p {
	font-size: var(--text-size-large);
	font-weight: 500;
}
.faq__container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 80px;
}

.faq__item {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 20px 24px 24px;
}

.faq__question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-align: left;
	font-size: var(--text-size-medium);
	font-weight: 600;
	color: white;
	transition: color 0.3s ease;
}

.faq__question:hover {
	color: var(--color-orange);
}

.faq__question:hover svg path {
	fill: var(--color-orange);
}

.faq__close {
	display: none;
}

.faq__open {
	display: inline-flex;
}

.faq__item.active .faq__close {
	display: inline-flex;
}

.faq__item.active .faq__open {
	display: none;
}

.faq__answer {
	display: none;
	margin-top: 20px;
}

.faq__answer p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.faq__answer p:last-child {
	margin-bottom: 0;
}

.faq__item ul, .faq__item ol {
	padding-left: 15px;
	color: rgba(255, 255, 255, 0.8);
}
.faq__item ul {
	list-style: disc;
}
.faq__item ol {
	list-style: decimal;
}