.faq-container {
	width: 100%;
}

.faq-heading {
	font-size: 32px;
	font-weight: 700;
	margin-top: 0;
	/* margin-bottom handled by control */
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid #333;
	/* padding handled by control */
}

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

.faq-question-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	width: 100%;
}

.faq-question {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.faq-icon {
	margin-left: 15px;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
}

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

.faq-answer {
	display: none; /* Hidden by default */
	font-size: 16px;
	line-height: 1.6;
	overflow: hidden;
}

.faq-answer-inner {
	/* Padding handled by control on wrapper or inner? 
       Actually, standard accordion pattern is padding-top on answer.
    */
}

@media (max-width: 767px) {
	.faq-heading {
		font-size: 24px;
	}
	.faq-question {
		font-size: 16px;
	}
	.faq-answer {
		font-size: 15px;
	}
}
