/* Wrapper */
.angie-faq-wrapper {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Heading */
.angie-faq-heading {
	text-align: center;
	padding: 0;
	margin: 0 0 40px 0;
	line-height: 1.3;
}

/* FAQ List */
.angie-faq-list {
	display: flex;
	flex-direction: column;
}

/* FAQ Item */
.angie-faq-item {
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.angie-faq-item.active {
	border-color: rgba(196, 77, 127, 0.1); /* Subtle border on active */
}

/* Question Button */
.angie-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
}

.angie-faq-question:focus {
	outline: none;
}

.angie-faq-title {
	flex: 1;
	padding-right: 15px;
}

/* Icon */
.angie-faq-icon {
	font-size: 14px;
	color: #999;
	transition: transform 0.3s ease, color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.angie-faq-item.active .angie-faq-icon {
	transform: rotate(45deg); /* Turn plus to x */
}

/* Answer */
.angie-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.angie-faq-answer-inner {
	padding: 0 25px 25px 25px;
}

/* Responsive */
@media (max-width: 767px) {
	.angie-faq-heading {
		font-size: 24px !important;
		margin-bottom: 30px !important;
	}
	
	.angie-faq-question {
		padding: 15px 20px;
	}
	
	.angie-faq-answer-inner {
		padding: 0 20px 20px 20px;
	}
	
	.angie-faq-title {
		font-size: 16px !important;
	}
}
