.biv-faq-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 35px 30px;
	background: var(--biv-faq-bg, #000);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 3px solid var(--biv-faq-primary, #9B1003);
	border-radius: 6px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	font-family: inherit;
}

.biv-faq-title {
	text-align: center;
	color: var(--biv-faq-text, #e0e0e0);
	font-weight: 400;
	margin: 0 0 25px;
	letter-spacing: 1px;
	border-bottom: 1px solid color-mix(in srgb, var(--biv-faq-text, #e0e0e0) 15%, transparent);
	padding-bottom: 15px;
}

.biv-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.biv-faq-item {
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.02);
	overflow: hidden;
}

.biv-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: transparent;
	border: none;
	color: var(--biv-faq-text, #e0e0e0);
	font-family: inherit;
	font-size: 1.05em;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.biv-faq-question:hover,
.biv-faq-question[aria-expanded="true"] {
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--biv-faq-primary, #9B1003);
}

.biv-faq-icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.biv-faq-icon::before,
.biv-faq-icon::after {
	content: '';
	position: absolute;
	background-color: currentColor;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.biv-faq-icon::before {
	width: 14px;
	height: 2px;
}

.biv-faq-icon::after {
	width: 2px;
	height: 14px;
}

.biv-faq-question[aria-expanded="true"] .biv-faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.biv-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.biv-faq-answer-inner {
	padding: 0 20px 20px;
	color: var(--biv-faq-text, #e0e0e0);
	opacity: 0.85;
	line-height: 1.6;
}

.biv-faq-answer-inner p:first-child {
	margin-top: 0;
}

.biv-faq-answer-inner p:last-child {
	margin-bottom: 0;
}
