.faq-wrapper {
	gap: 16px;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 55px 0 40px;
}

.faq-container {
	width: calc((100% - 16px) / 2);
}

.faq-item {
	background: var(--green-light);
	border-radius: 12px;
	margin-bottom: 16px;
	/* 	border: 1px solid var(--green-dark); */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	cursor: pointer;
	user-select: none;
}

.faq-question-text {
	font-size: 1.1rem;
	font-weight: 600;
	flex: 1;
	padding-right: 20px;
	color: var(--green-main);
}

.faq-toggle {
	width: 44px;
	height: 44px;
	/*     background: var(--green-gradient);
	border-radius: 50%;
	border: 1px solid var(--green-dark); */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s ease-in-out;
	position: relative;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-plus {
	position: relative;
	width: 16px;
	height: 16px;
}

.faq-plus::before,
.faq-plus::after {
	content: '';
	position: absolute;
	background: var(--green-main);
	transition: all 0.35s ease-in-out;
	border-radius: 1px;
}

.faq-plus::before {
	width: 100%;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.faq-plus::after {
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.faq-item.active .faq-plus::before,
.faq-item.active .faq-plus::after {
	background: var(--green-main);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease-in-out;
	background: var(--green-light);
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer-content {
	padding: 0 20px 24px;
	font-size: 1rem;
}

.faq-answer-content {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.faq-item.active .faq-answer-content {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.faq-container {
		width: 100%;
	}
}