.question-btn-up,
.question-btn-down {
	color: var(--col-green-3);
	position: absolute;
	top: 0rem;
	width: 20px;
	height: 20px;
	/* right: 8px; */
}

.question-btn-up {
	display: none;
}

.question-btn-cont {
	position: relative;
	width: 20px;
	height: 20px;
}

.question-btn-cont .btn {
	padding: 0.05rem 0;
}

.question-title {
	font-size: 1.3rem;
	font-family: var(--font-2);
	font-weight: 400;
	margin-bottom: 0;
	text-align: left;
}

.question {
	cursor: pointer;
	border-radius: 14px;
	background-color: var(--col-green-5);
	padding: 20px 30px;
	margin-bottom: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.question:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.answer {
	display: none;
	text-align: left;
	margin-bottom: 0;
	color: rgb(100, 100, 100);
}