/* Header */
.twoUfi-faq-header {
	text-align: center;
	margin-bottom: 48px;
}

.twoUfi-faq-header__title {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	font-size: 30px;
	color: #091C30;
	margin: 0 0 24px;
}

@media (min-width: 768px) {
	.twoUfi-faq-header__title {
		font-size: 48px;
	}
}

.twoUfi-faq-header__desc {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: rgba(9, 28, 48, 0.7);
	margin: 0;
}

/* FAQ container */
.twoUfi-faq {
	background: #FFFFFF;
	border: 2px solid rgba(9, 28, 48, 0.1);
	border-radius: 16px;
	padding: 0 32px;
	max-width: 700px;
	margin: 0 auto;
}

/* Individual item */
.twoUfi-faq__item {
	border-bottom: 2px solid #F2F1FF;
}

.twoUfi-faq__item:last-child {
	border-bottom: 0;
}

/* Trigger button */
.twoUfi-faq__trigger {
	width: 100%;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none !important;
	background-color: transparent !important;
	border: 0 !important;
	cursor: pointer;
	text-align: left;
	gap: 32px;
	color: inherit;
	text-decoration: none !important;
	box-shadow: none !important;
}

.twoUfi-faq__trigger:hover,
.twoUfi-faq__trigger:focus,
.twoUfi-faq__trigger:active {
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.twoUfi-faq__trigger:focus {
	outline: none !important;
}

.twoUfi-faq__question {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #091C30;
	transition: color 0.2s ease;
}

.twoUfi-faq__trigger:hover .twoUfi-faq__question {
	color: #3677D7;
}

/* Icons */
.twoUfi-faq__icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.twoUfi-faq__icon--plus {
	background-color: #F2F1FF;
	color: rgba(9, 28, 48, 0.6);
}

.twoUfi-faq__trigger:hover .twoUfi-faq__icon--plus {
	background-color: #3677D7;
	color: #FFFFFF;
}

.twoUfi-faq__icon--minus {
	display: none;
	background-color: #3677D7;
	color: #FFFFFF;
}

/* Open state */
.twoUfi-faq__item.is-open .twoUfi-faq__icon--plus {
	display: none;
}

.twoUfi-faq__item.is-open .twoUfi-faq__icon--minus {
	display: flex;
}

/* Answer */
.twoUfi-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	opacity: 0;
}

.twoUfi-faq__item.is-open .twoUfi-faq__answer {
	max-height: 500px;
	opacity: 1;
	padding-bottom: 24px;
}

.twoUfi-faq__answer p {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(9, 28, 48, 0.7);
	margin: 0;
}
