.faq-container-bbfe7d5f {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: transparent; /* Changed from black, so waves blend to parent */
	margin-top: 6vw; /* Add margin to make room for absolute waves pushing OUT */
	margin-bottom: 6vw;
}

/* The waves should expand OUT of the black container, visually covering the white background above/below it */
.faq-waves-top-bbfe7d5f,
.faq-waves-bottom-bbfe7d5f {
	position: absolute;
	left: 0;
	width: 100%;
	height: 6vw;
	min-height: 40px;
	z-index: 10;
	overflow: hidden;
	line-height: 0;
}

.faq-waves-top-bbfe7d5f {
	top: -6vw; /* Pull waves up OUT of the container */
	transform: translateY(1px); /* Prevent 1px gap line */
}

.faq-waves-bottom-bbfe7d5f {
	bottom: -6vw; /* Pull waves down OUT of the container */
	transform: translateY(-1px); /* Prevent 1px gap line */
}

.faq-wave-svg {
	position: relative;
	display: block;
	width: calc(200% + 1.3px);
	height: 100%;
	transform: translateX(0);
	animation: faq-wave-move-bbfe7d5f 15s linear infinite;
}

.faq-wave-path-layer {
	opacity: 0.5;
	animation: faq-wave-move-bbfe7d5f 20s linear infinite reverse;
	transform-origin: center;
}

.faq-wave-path-main {
	opacity: 1;
}

@keyframes faq-wave-move-bbfe7d5f {
	0% { transform: translateX(0%); }
	100% { transform: translateX(-50%); }
}

.faq-section-wrapper-bbfe7d5f {
	padding: 4vw 20px; /* Reduced padding since we used margin on container */
	background-color: #000;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 5;
}

.faq-title-bbfe7d5f {
	font-family: inherit;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 50px;
	letter-spacing: 1px;
}

.faq-list-bbfe7d5f {
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
}

.faq-item-bbfe7d5f {
	border-bottom: 1px solid #222;
}

.faq-item-bbfe7d5f:first-child {
	border-top: 1px solid #222;
}

.faq-question-bbfe7d5f {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	user-select: none;
}

.faq-icon-bbfe7d5f {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.faq-item-bbfe7d5f.active .faq-icon-bbfe7d5f {
	transform: rotate(180deg);
}

.faq-answer-bbfe7d5f {
	display: none;
	padding-bottom: 20px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.8;
}

.faq-item-bbfe7d5f.active .faq-answer-bbfe7d5f {
	display: block;
}
