
.faq-section .eyebrow {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	margin-bottom: 0.4625rem;
	color: var(--wl-secondary-color);
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}
/* ========================================================================
   FAQ ACCORDION SECTION starts
   ======================================================================== */
.faq-section {
	position: relative;
	background-color: #F7FBFF;
	padding: 100px 0;
	font-family: "halyard-display", sans-serif;
	position: relative;
	z-index: 99;
	float: none;
}
.faq-header {
	text-align: center;
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.faq-main-title {
	color: #004E97;
	font-size: 18px;
	font-weight: 400;
}
.faq-subtitle {
	font-size: 40px;
	font-weight: 500;
	line-height: 132%;
	color: #000;
}

/* Accordion Container & Cards */
.faq-accordion-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 1040px;
	margin: 0 auto;
	font-family: "halyard-display", sans-serif;
}
.faq-item {
	background-color: #FFFFFF; /* Light blue/gray card background */
	border-radius: 4px;
	overflow: hidden;
	transition: background-color 0.5s ease;
}

/* Question Button */
.faq-question {
 	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	text-align: left;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	color: #353C46; /* Default collapsed question color */
	transition: color 0.2s ease;
	font-family: "halyard-display", sans-serif;
}
.faq-question:hover {
	background: none !important;
	color: #353C46 !important;
}
.faq-item.active .faq-question {
	color: #004E97;
	/* padding-bottom: 14px; */
}
.faq-item.active .faq-question:hover { 
	color: #004E97 !important;
}

/* Short Inset Divider Line on Active State */
.faq-item.active .faq-question::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 24px;  /* Left inset margin */
	right: 24px; /* Right inset margin */
	height: 1px;
	background-color: rgba(53, 60, 70, 15%);
	transition: background-color 0.2s ease;
}

/* Toggle Icon (+ / -) */
.faq-icon {
	position: relative;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 16px;
}

/* Image/SVG smooth transition */
.faq-icon svg,
.faq-icon img {
	position: absolute;
	width: 18px;
	height: 18px;
	/* transition: opacity 0.25s ease, transform 0.25s ease; */
	transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
							transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Default state: Show Plus, Hide Minus */
.faq-icon .icon-plus {
	opacity: 1;
	transform: rotate(0deg);
}
.faq-icon .icon-minus {
	opacity: 0;
	transform: rotate(-180deg);
}

/* Active state: Hide Plus, Show Minus */
.faq-item.active .faq-icon .icon-plus {
	opacity: 0;
	transform: rotate(180deg);
}
.faq-item.active .faq-icon .icon-minus {
	opacity: 1;
	transform: rotate(0deg);
}

/* Answer Slide Area (Figma Cubic-Bezier Transition) */
.faq-answer {
	overflow: hidden;
	will-change: max-height;
	transition: max-height 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-answer-inner {
	padding: 12px 24px 24px;
	color: #353C46;
	font-size: 18px;
	line-height: 24px;
	font-family: "halyard-display", sans-serif;
	max-width: 88%;
}
.faq-answer-inner p {
	margin: 0;
	font-family: "halyard-display", sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 300;
	color: #353C46;
}

@media only screen and (max-width: 767px) {
	.faq-header {
		margin-bottom: 24px;
	}
	.faq-section {
		padding: 50px 0;
	}
	.faq-subtitle { 
		font-size: 30px;
		line-height: 100%;
	}
	.faq-question { 
		font-size: 16px;
		line-height: 20px;
		padding: 12px;
	}
	/* .faq-item.active .faq-question {
		padding-bottom: 12px;
	} */
	.faq-item.active .faq-question::after {
		left: 12px;
		right: 12px;
	}
	.faq-answer-inner {
		padding: 12px;
		max-width: 100%;
	}
	.faq-answer-inner p {
		font-size: 14px;
		line-height: 20px;
	}
	.faq-icon svg, .faq-icon img {
		width: 14px;
		height: 14px;
	}
}