/* Base Container & Reset */
.acb-faq-wrapper,
.acb-faq-wrapper * {
	box-sizing: border-box;
}

.acb-faq-wrapper {
	width: 100%;
	background-color: #0b071e;
	padding: 90px 20px;
}

.acb-faq-container {
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
}

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

.acb-faq-subtitle {
	color: #c7b3ce;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
}

.acb-faq-title {
	color: #d99a6c;
	font-size: 48px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0;
}

/* Accordion Outer Container - Dashed Border Box */
.acb-faq-box {
	/* 2px dashed border with 15% white opacity matching Figma style */
	border: 2px dashed rgba(255, 255, 255, 0.15);
	background-color: rgba(255, 255, 255, 0.015);
	width: 100%;
}

/* Individual Row */
.acb-faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.acb-faq-item:last-child {
	border-bottom: none;
}

/* Trigger Button */
.acb-faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: none;
	padding: 22px 28px;
	cursor: pointer;
	text-align: left;
	outline: none;
	transition: background-color 0.2s ease;
}

.acb-faq-trigger:hover {
	background-color: rgba(255, 255, 255, 0.02);
}

.acb-faq-question-text {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.2px;
}

/* Chevron Icon */
.acb-faq-icon {
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	opacity: 0.8;
	transition: transform 0.3s ease;
}

/* Active State Styles */
.acb-faq-item.is-active .acb-faq-icon {
	transform: rotate(180deg);
}

.acb-faq-item.is-active .acb-faq-question-text {
	color: #d99a6c;
}

/* Smooth Accordion Body Slide Animation */
.acb-faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.acb-faq-answer {
	padding: 0 28px 24px 28px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
	.acb-faq-wrapper {
		padding: 60px 15px;
	}

	.acb-faq-title {
		font-size: 32px;
	}

	.acb-faq-trigger {
		padding: 18px 20px;
	}

	.acb-faq-answer {
		padding: 0 20px 20px 20px;
	}

	.acb-faq-question-text {
		font-size: 14px;
	}
}