.faq-item {
	transition: all 0.4s ease;
	background-color: #F6F7FF;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-item-title {
	font-size: 18px;
	font-weight: 500;
	color: #1f2937;
}

.faq-header {
	padding: 16px;
	cursor: pointer;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0s ease;
	padding: 0 16px;
	color: #65676C;
	font-size: 16px;
	font-weight: 400;
}

.faq-item.active .faq-content {
	max-height: 500px;
	padding: 0 16px 16px;
}

.faq-toggle {
	transition: transform 0.3s ease;
}

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

.content-wrap {
	background-color: #fff;
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: inset 0px 8px 10px rgba(88, 110, 219, 0.5);
}

.news-item {
	display: none;
}

.news-item.show {
	display: block;
}

.pagination-btn {
	min-width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-btn.active {
	font-weight: 600;
	color: #333;
}

.rectangle {
	box-shadow: inset 0px 6px 16px rgba(88, 110, 219, 0.5);
}

.rectangle-right {
	border-radius: 20px;
	box-shadow: inset 0px 8px 10px rgba(88, 110, 219, 0.5);
}

.right-top {
	border-radius: 10px 10px 0 0;
}

.faq-item .icon {
	transition: all 0.3s ease-in-out;
}

.faq-item.active .icon {
	transform: rotate(180deg);
	transition: all 0.3s ease-in-out;
}