.efp-faq {
	width: 100%;
}

.efp-faq-heading {
	text-align: center;
	margin-bottom: 0;
}

.efp-faq-title-wrap {
	margin-bottom: 6px;
}

/* Main 2-column layout */
.efp-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

	/* Column gap between first and sec */
	column-gap: 16px;

	margin-top: 28px;

	align-items: start;
	align-content: start;
}

/* Odd FAQ column / Even FAQ column */
.efp-faq-grid .first,
.efp-faq-grid .sec {
	display: flex;
	flex-direction: column;

	/* Row gap between FAQ items */
	gap: 12px;

	width: 100%;
	min-width: 0;

	align-self: start;
}

/* FAQ item */
.efp-faq-item {
	width: 100%;
	min-width: 0;
	height: fit-content;

	align-self: flex-start;

	overflow: hidden;

	background: #fff;

	box-sizing: border-box;

	transition: box-shadow 0.2s ease;
}

.efp-faq-item.is-open {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

/* Trigger */
.efp-faq-trigger {
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 18px;

	margin: 0;
	padding: 14px 18px 14px 22px;

	font: inherit;
	text-align: left;

	border: 0;
	cursor: pointer;

	color: inherit;
	background: #fff;

	box-sizing: border-box;
}

.efp-faq-trigger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -2px;
}

/* Question */
.efp-faq-question {
	min-width: 0;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 700;

	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* Chevron */
.efp-faq-chevron {
	position: relative;

	flex: 0 0 8px;

	width: 8px;
	height: 8px;

	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;

	transform: rotate(45deg) translateY(-2px);

	transition: transform 0.22s ease;
}

.efp-faq-item.is-open .efp-faq-chevron {
	transform: rotate(225deg) translate(-1px, -1px);
}

/* Answer */
.efp-faq-answer-wrap {
	border-top: 1px solid #eeeeee;
}

.efp-faq-answer-wrap[hidden] {
	display: none !important;
}

.efp-faq-answer-content {
	padding: 12px 22px 20px;

	font-size: 14px;
	line-height: 1.65;
	color: #333;

	box-sizing: border-box;
}

.efp-faq-answer-content > :first-child {
	margin-top: 0;
}

.efp-faq-answer-content > :last-child {
	margin-bottom: 0;
}

.efp-faq .efpa-view-all-wrap{
	text-align: center;
    margin-top: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
	.efp-faq-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

/* Mobile */
@media (max-width: 767px) {
	.efp-faq-grid {
		grid-template-columns: 1fr;
	}

	.efp-faq-grid .first,
	.efp-faq-grid .sec {
		gap: 12px;
	}

	.efp-faq-grid .sec {
		margin-top: 12px;
	}

	.efp-faq-title {
		font-size: 26px;
	}

	.efp-faq-question {
		font-size: 11px;
	}

	.efp-faq-trigger {
		padding: 14px 16px;
	}
}