.accordion-list {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.accordion-item {
	border-bottom: 1px solid #E5E5E5;
}

.accordion-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 24px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	color: #031527;
}

.accordion-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #0072FF;
	transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-item__icon {
	transform: rotate(45deg);
}

.accordion-item__answer-wrap {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}

.accordion-item__answer {
	padding: 0 0 24px 32px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #404E5B;
}

.accordion-item__answer p {
	margin: 0;
}

@media (max-width: 767px) {
	.accordion-item__question {
		gap: 16px;
		padding: 20px 0;
		font-size: 20px;
		line-height: 24px;
	}

	.accordion-item__answer {
		padding: 0 0 20px 20px;
	}
}
