div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}



.useful-info {
	max-width: 800px;
	margin: 40px auto;
	padding: 30px;
	background: #f5f7fa;
	border: 1px solid #e1e5eb;
	border-radius: 12px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

.useful-info h2 {
	margin: 0 0 25px;
	text-align: center;
	font-size: 28px;
	color: #333;
}

.faq {
	width: 100%;
}

.faq-item {
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #e1e5eb;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 18px 20px;
	border: none;
	background: #fff;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: space-between;

	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: #333;

	transition: background 0.2s ease;
}

.faq-question:hover {
	background: #f8f9fb;
}

.faq-icon {
	flex-shrink: 0;
	margin-left: 15px;
	font-size: 24px;
	font-weight: 400;
	color: #777;

	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;

	transition:
			max-height 0.3s ease,
			padding 0.3s ease;
}

.faq-answer p {
	margin: 0;
	padding-bottom: 18px;
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-top: 5px;
}

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

@media (max-width: 600px) {
	.useful-info {
		margin: 20px 10px;
		padding: 20px 15px;
	}

	.useful-info h2 {
		font-size: 24px;
	}

	.faq-question {
		padding: 15px;
	}
}