.scfaq-wrapper {
	width: 100%;
}

.scfaq-category-title {
	margin: 24px 0 12px;
	font-size: 22px;
	font-weight: 700;
}

.scfaq-category-block:first-child .scfaq-category-title {
	margin-top: 0;
}

.scfaq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.scfaq-item {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.scfaq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	color: #1a1a1a;
}

.scfaq-icon {
	flex-shrink: 0;
	margin-left: 16px;
	font-size: 20px;
	line-height: 1;
	transition: transform 0.25s ease;
	color: #0b5ed7;
}

.scfaq-item.scfaq-active .scfaq-icon {
	transform: rotate(45deg);
}

.scfaq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.scfaq-answer-inner {
	padding: 0 20px 18px;
	color: #4a4a4a;
	line-height: 1.6;
}

.scfaq-item.scfaq-open .scfaq-answer,
.scfaq-item.scfaq-active .scfaq-answer {
	max-height: 1000px;
}
