.faq-page-section {
	padding: 177px 0 80px;
	background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 55%);
}

.faq-page-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 50%));
	gap: 16px;
	align-items: stretch;
}

.faq-page-layout__left,
.faq-page-layout__right {
	min-width: 0;
}

.faq-hero__media {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	min-height: 694px;
	padding: 16px 32px 32px;
	background-image: linear-gradient(180deg, #0f3a72 0%, #001934 100%);
	background-color: #001f48;
	display: flex;
	flex-direction: column;
}

.faq-hero {
	position: sticky;
	top: 128px;
}

.faq-accordion__qa {
	margin-bottom: 24px;
}

.faq-accordion__qa:last-child {
	margin-bottom: 0;
}

.faq-accordion__qa-title {
	font-family: Arimo;
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	color: #001f48;
	margin: 0;
}

.faq-hero__media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.faq-hero__overlay {
	position: relative;
	height: 100%;
	z-index: 2;
	flex: 1;
	color: #ffffff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.faq-hero__content {
	max-width: 520px;
}

.faq-hero__title {
	margin: 0 0 8px;
	font-family: Arimo;
	font-weight: 700;
	font-size: 48px;
	line-height: 140%;
	color: #ffffff;
}

.faq-hero__subtitle {
	margin: 0 0 32px;
	font-family: Arimo;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	color: #ffffff;
}


.faq-hero__cta {
	margin: 0;
	max-width: 240px;
	width: 100%;
	min-height: 55px;
	padding: 12px 20px;
	border-radius: 57px;
	border: 1px solid #ffffff;
	background: #ffffff;
	color: #1E17E0;
	font-family: Manrope;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.faq-hero__cta svg path {
	transition: stroke 0.25s ease;
	stroke: #1E17E0;
}

@media (hover: hover) {
	.faq-hero__cta:hover {
		text-decoration: none;
		background: transparent;
		color: #ffffff;
	}

	.faq-hero__cta:hover svg path {
		stroke: #ffffff;
	}
}

.faq-hero__stats {
	font-family: Manrope;
	padding: 24px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.76);
	backdrop-filter: blur(8px);
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 12px;
}

.faq-hero__stat {
	justify-content: center;
}

.faq-hero__stats .testimonials-stat-top {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	margin: 0;
}

.faq-hero__stats .testimonials-stat-title {
	font-weight: 700;
	font-size: 48px;
	line-height: 100%;
	color: #1E17E0;
}

.faq-hero__stats .testimonials-stat-label {
	font-weight: 400;
	font-size: 24px;
	line-height: 140%;
	color: #1E17E0;
}


.faq-page-layout__right {
	display: flex;
	flex-direction: column;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding-right: 8px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.faq-accordion::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.faq-accordion__item {
	border-radius: 16px;
	border: 1px solid transparent;
	background-color: #ffffff;
	transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
	padding-right: 8px;
}

.faq-accordion__item[open] {
	border-color: #D9EAFC;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(24px);
	max-height: 385px;
	overflow: hidden;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #C3C3C3 #FFFFFF;
}

.faq-accordion__item[open]::-webkit-scrollbar {
	width: 6px;
}

.faq-accordion__item[open]::-webkit-scrollbar-track {
	background: #FFFFFF;
	border-radius: 6px;
}

.faq-accordion__item[open]::-webkit-scrollbar-thumb {
	background: #C3C3C3;
	border-radius: 6px;
}

.faq-accordion__question {
	list-style: none;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 10px 32px;
	font-family: Arimo;
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	color: #001f48;
}

.faq-accordion__question::-webkit-details-marker {
	display: none;
}

.faq-accordion__toggle {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #F2F8FF;
	background-image: url("/skin/ukexpes_skin/frontend/img/faq-page/icons/plus.svg?v=1");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
	transition: background-color 0.25s ease, background-image 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion__item[open] .faq-accordion__toggle {
	background-color: #ffffff;
	background-image: url("/skin/ukexpes_skin/frontend/img/faq-page/icons/minus.svg?v=1");
}

.faq-accordion__answer {
	padding: 0 32px 24px;
}

.faq-accordion__answer p {
	margin: 16px 0 0;
	font-family: Arimo;
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: #001F48;
}

@media (max-width: 1280px) {
	.faq-page-layout {
		gap: 20px;
	}

	.faq-hero__title {
		font-size: 40px;
	}

	.faq-hero__subtitle {
		font-size: 18px;
	}

	.faq-hero__stats .testimonials-stat-title {
		font-size: 40px;
	}

	.faq-hero__stats .testimonials-stat-label {
		font-size: 20px;
	}

	.faq-accordion {
		padding-right: 4px;
	}

	/* .faq-hero__media > img {
		display: none;
	} */
}

@media (max-width: 991px) {
	.faq-page-section {
		padding: 80px 0 60px;
	}

	.faq-page-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.faq-hero__media {
		position: relative;
		top: 0;
		min-height: 420px;
	}

	.faq-accordion {
		padding-right: 0;
	}

	.faq-accordion__answer {
		padding: 0 20px 24px;
	}

	.faq-hero__stats {
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.faq-page-layout__left {
		display: none;
	}

	.faq-accordion {
		padding-right: 0;
	}

	.faq-accordion__question {
		padding: 10px 16px;
		font-size: 16px;
	}

	.faq-accordion__answer {
		padding: 0 16px 24px;
	}

	.faq-accordion__answer p {
		font-size: 16px;
	}
}

