.faq-container-2ffba589 {
	background-color: #0b0914;
	padding: 40px;
	border-radius: 12px;
	color: #ffffff;
	font-family: sans-serif;
	text-align: left;
}

.faq-header-2ffba589 {
	margin-bottom: 40px;
}

.faq-subheading-2ffba589 {
	color: #FFC107;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.faq-main-heading-2ffba589 {
	color: #ffffff;
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.faq-description-2ffba589 {
	color: #cccccc;
	font-size: 16px;
	margin: 0;
	line-height: 1.6;
}

.faq-accordion-2ffba589 {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item-2ffba589 {
	background-color: #E2E2E2;
	border-radius: 10px;
	overflow: hidden;
}

.faq-item-header-2ffba589 {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 20px 25px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: #000000;
	transition: background-color 0.3s ease;
}

.faq-item-header-2ffba589:hover {
	background-color: #d0d0d0;
}

.faq-icon-2ffba589 {
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.faq-icon-2ffba589 svg {
	width: 20px;
	height: 20px;
	stroke-width: 3px;
}

.faq-item-2ffba589.is-active .faq-icon-2ffba589 {
	transform: rotate(90deg);
}

.faq-item-title-2ffba589 {
	font-size: 18px;
	font-weight: 700;
	text-decoration: underline;
}

.faq-item-content-2ffba589 {
	color: #333333;
}

.faq-item-content-inner-2ffba589 {
	padding: 0 25px 20px 60px; /* Indented to align with text */
	line-height: 1.6;
}

/* Toast Notification */
.faq-toast-2ffba589 {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background-color: #1a1727;
	color: #ffffff;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	border: 1px solid #2a253a;
}

@media (max-width: 768px) {
	.faq-container-2ffba589 {
		padding: 20px;
	}
	
	.faq-main-heading-2ffba589 {
		font-size: 28px;
	}
	
	.faq-item-header-2ffba589 {
		padding: 15px;
	}
	
	.faq-item-title-2ffba589 {
		font-size: 16px;
	}
	
	.faq-item-content-inner-2ffba589 {
		padding: 0 15px 15px 50px;
	}
	
	.faq-toast-2ffba589 {
		bottom: 10px;
		left: 10px;
		right: 10px;
		text-align: center;
	}
}