.sdv2-faq {
	padding-bottom: 110px;
}

.sdv2-faq__list {
	display: grid;
	gap: 12px;
	max-width: 1120px;
	margin: 0 auto;
}

.sdv2-faq-item {
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 95, 146, 0.07);
}

.sdv2-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-height: 54px;
	margin: 0 !important;
	margin-bottom: 0;
	padding: 0 18px 0 22px;
	border: 0;
	background: transparent;
	color: #333;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
	text-align: left;
	text-transform: none;
}

.sdv2-faq-question img {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	padding: 5px;
	border: 1px solid var(--sdv2-blue);
	border-radius: 50%;
	object-fit: contain;
	transition: transform 0.2s ease;
}

.sdv2-faq-item.is-open .sdv2-faq-question img {
	transform: rotate(45deg);
}

.sdv2-faq-answer {
	height: 0;
	overflow: hidden;
	transition: height 0.32s ease;
}

.sdv2-faq-answer__inner {
	margin: 0 22px;
	padding: 0 0 18px;
	border-top: 1px solid #e1eef6;
}

.sdv2-faq-answer__inner p {
	max-width: 820px;
	margin: 14px 0 0;
	color: var(--sdv2-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.sdv2-faq {
		padding-bottom: 70px;
	}

	.sdv2-faq__list {
		gap: 9px;
	}

	.sdv2-faq-question {
		min-height: 44px;
	}

	.sdv2-faq-question {
		padding: 0 12px 0 14px;
		font-size: 11px;
	}

	.sdv2-faq-question img {
		width: 22px;
		height: 22px;
	}

	.sdv2-faq-answer__inner {
		margin: 0 14px;
		padding-bottom: 14px;
	}

	.sdv2-faq-answer__inner p {
		margin-top: 10px;
		font-size: 10px;
		line-height: 1.55;
	}
}
