.angie-faq-container {
	display: flex;
	flex-direction: column;
}

.angie-faq-item {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	overflow: hidden;
}

.angie-faq-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
}

.angie-faq-title {
	font-weight: 500;
	margin-right: 15px;
}

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

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

.angie-faq-content-wrapper {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.angie-faq-content {
	padding: 0 20px 20px;
}
