.faq {
	width: 90%;
	margin: 20px auto;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-item {
	margin-bottom: 12px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-question {
	position: relative;
	padding: 18px 60px 18px 24px;
	background: #f8f9fa;
	color: #333;
	font-weight: 600;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.3s ease;
}

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

.faq-question:after {
	content: '+';
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 400;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
	content: '−';
	transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	background: white;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer-content {
	padding-bottom: 8px;
	line-height: 1.6;
	color: #555;
}

/* Анимация для улучшения UX */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

.faq-item.active .faq-answer-content {
	animation: fadeIn 0.3s ease forwards;
}

/* Для доступности */
.faq-question:focus {
	outline: 2px solid #4d90fe;
	outline-offset: 2px;
}