.faq-modern {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.faq-hero {
	text-align: center;
}

.faq-hero img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 24px 50px rgba(16, 24, 40, 0.08);
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
	padding: 0 22px;
	border: 1px solid rgba(208, 2, 40, 0.08);
}

.faq-item[open] {
	box-shadow: 0 24px 50px rgba(16, 24, 40, 0.12);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	position: relative;
	font-weight: 600;
	color: #111;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '\002B';
	font-weight: bold;
	color: #d00228;
	font-size: 20px;
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: '\2212';
}

.faq-title {
	font-size: 16px;
	line-height: 1.5;
}

.faq-body {
	padding: 0 0 18px 0;
	color: #444;
	line-height: 1.8;
}

.faq-body p {
	margin-bottom: 12px;
}

.faq-empty {
	text-align: center;
	color: #666;
	margin: 24px 0;
}


@media (max-width: 768px) {
	.faq-item {
		padding: 0 18px;
	}
	.faq-title {
		font-size: 15px;
	}
}

@media (max-width: 520px) {
	.faq-item {
		padding: 0 16px;
	}
}
