.faq-section,
.faq-section * {
	box-sizing: border-box;
}

.faq-section {
	width: 100%;
	padding: 0 30px;
	background: var(--faq-background, #eaf1fa);
	color: #333;
}

.faq-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

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

.faq-section__eyebrow {
	width: 100%;
	margin: 0;
	background: linear-gradient(90deg, #c883d4 2.45%, #fe5f35 100%);
	background-clip: text;
	color: transparent;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.18px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.faq-section__heading {
	width: 100%;
	margin: 0;
	color: #333;
	font-size: 52px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.56px;
}

.faq-section__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
	max-width: 910px;
}

.faq-section__items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.faq-section__item {
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
}

.faq-section__toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 16px 24px;
	border: 0;
	border-radius: 8px;
	background: #fff !important;
	color: #333;
	text-align: center;
	cursor: pointer;
}

.faq-section__question {
	display: block;
	width: 100%;
	color: #333;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.72px;
	transition: color 0.2s ease;
}

.faq-section__answer {
	width: 100%;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.faq-section__answer p {
	margin: 0;
}

.faq-section__item .faq-section__toggle {
	gap: 16px;
}

.faq-section__item.is-open .faq-section__question {
	color: var(--faq-active-color, #fe5f35);
}

.faq-section__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.faq-section__cta-text {
	margin: 0;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.faq-section__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 33px;
	padding: 6px 16px;
	border-radius: 4px;
	background: #1169ec;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
}

.faq-section__cta-button:hover,
.faq-section__cta-button:focus-visible {
	background: #0e5dcc;
	color: #fff;
}

@media (max-width: 1024px) {
	.faq-section__heading {
		font-size: 44px;
	}
}

@media (max-width: 767px) {
	.faq-section {
		padding: 32px 16px;
	}

	.faq-section__inner {
		gap: 24px;
	}

	.faq-section__header {
		gap: 24px;
	}

	.faq-section__heading {
		font-size: 32px;
		line-height: 1.1;
		letter-spacing: -0.96px;
	}

	.faq-section__content {
		gap: 24px;
		max-width: none;
	}

	.faq-section__items {
		gap: 16px;
	}

	.faq-section__toggle {
		min-height: 82px;
		padding: 16px 24px;
	}

	.faq-section__question {
		font-size: 24px;
	}

	.faq-section__cta {
		width: 100%;
	}

	.faq-section__cta-text {
		width: 100%;
	}
}