.wpf-faq-section {
	max-width: 100%;
	margin: 50px auto 30px;
	padding: 0 10px;
}

.wpf-faq-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
}

.wpf-faq-list {
	border-top: 1px solid #e2e2e2;
}

.wpf-faq-item {
	border-bottom: 1px solid #e2e2e2;
}

.wpf-faq-question {
	width: 100%;
	background: transparent !important;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 8px;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	color: #1a1a1a;
	transition: none;
}

.wpf-faq-question:hover,
.wpf-faq-question:focus,
.wpf-faq-question:active,
.wpf-faq-question[aria-expanded="true"] {
	background: transparent !important;
	color: #1a1a1a;
	outline: none;
	box-shadow: none;
}

.wpf-faq-icon {
	position: relative;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	border: 1px solid #999;
	border-radius: 50%;
	margin-left: 16px;
}

.wpf-faq-icon::before,
.wpf-faq-icon::after {
	content: "";
	position: absolute;
	background: #444;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease;
}

.wpf-faq-icon::before {
	width: 10px;
	height: 1px;
}

.wpf-faq-icon::after {
	width: 1px;
	height: 10px;
}

.wpf-faq-question[aria-expanded="true"] .wpf-faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

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

.wpf-faq-answer-inner {
	padding: 0 8px 20px;
	color: #555;
	line-height: 1.6;
	font-size: 15px;
}

.wpf-faq-answer-inner p:last-child {
	margin-bottom: 0;
}
