.custom-faq-accordion {
    display: grid;
}

.faq-item {
	border-radius: 12px;
	box-shadow: 0 5px 25px -1px rgba(255, 255, 255, 0.05);
}
.faq-item.active {
	box-shadow: 0 5px 25px -1px rgba(255, 255, 255, 0.1);
}

.faq-number {
	background: linear-gradient(135deg, #FF9F1A 0%, #FF7A00 50%, #FF4D6D 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.faq-question {
	width: auto;
    text-align: left;
    padding: 20px;
    border: none;
    outline: none;
    cursor: pointer;
}

.faq-item .question-icon svg {
	transform: rotate(0deg);
	transition: transform 500ms ease-in-out;
}
.faq-item.active .question-icon svg {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	transition: max-height 0.4s ease;
}

.faq-answer-inner {
    border-top: solid 1px #e3e3e3a8;
    padding: 12px 24px;
}
.faq-answer-text {
	width: 80%;
}