.faq {
	background-color: #031527;
	margin-top: -40px;
	position: relative;
	z-index: 0;
	padding-top: 140px;
	padding-bottom: 100px;
}

.faq__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.faq__heading {
	margin: 0;
	text-align: center;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #FFFFFF;
}

/* Tabs layout */
.faq__tabs {
	display: flex;
	flex-direction: row;
	gap: 60px;
}

.faq__tabs-nav {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
	width: 350px;
	flex-shrink: 0;
}

.faq__tab-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	text-align: left;
	font-family: inherit;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
	background: #022852;
	border: none;
	border-radius: 12px;
	padding: 16px 20px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.faq__tab-btn:hover,
.faq__tab-btn.is-active {
	background: #0072FF;
	color: #FFFFFF;
}

.faq__tab-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

/* Panels */
.faq__tabs-content {
	flex-grow: 1;
	min-width: 0;
}

.faq__panel {
	display: none;
}

.faq__panel.is-active {
	display: block;
}

/* Accordion */
.faq__item {
	border: none;
	padding: 0;
}

.faq__item + .faq__item {
	margin-top: 40px;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
	background: transparent;
	border: none;
	padding: 0;
	text-align: left;
	font-family: inherit;
	cursor: pointer;
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
	transition: color 0.2s ease;
}

.faq__question:hover,
.faq__item.is-open .faq__question {
	color: #FFFFFF;
}

.faq__question-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.faq__question-icon svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.faq__item.is-open .faq__icon-plus {
	display: none;
}

.faq__item:not(.is-open) .faq__icon-minus {
	display: none;
}

/* Smooth expand: max-height (inline value is set by JS). */
.faq__answer-wrap {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}

/* no-JS fallback */
.no-js .faq__item.is-open .faq__answer-wrap {
	max-height: none;
}

.faq__answer {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
}

.faq__answer > :first-child {
	margin-top: 16px;
}

.faq__answer p {
	margin: 0 0 12px;
}

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

@media (prefers-reduced-motion: reduce) {
	.faq__answer-wrap {
		transition: none;
	}
}

.faq__answer a {
	color: #FFFFFF;
}

@media (max-width: 1024px) {
	.faq__tabs {
		gap: 40px;
	}

	.faq__tabs-nav {
		width: 300px;
	}

	.faq__tab-btn {
		font-size: 18px;
		line-height: 24px;
	}

	.faq__item + .faq__item {
		margin-top: 32px;
	}

	.faq__question {
		gap: 32px;
		font-size: 20px;
		line-height: 24px;
	}
}

@media (max-width: 767px) {
	.faq__tabs {
		flex-direction: column;
	}

	.faq__tabs-nav {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		width: 100%;
		-webkit-overflow-scrolling: touch;
	}

	.faq__tab-btn {
		flex-shrink: 0;
		white-space: nowrap;
		font-size: 16px;
		line-height: 20px;
		padding: 12px 16px;
	}

	.faq__question {
		font-size: 18px;
		line-height: 20px;
	}
}
