.faq-page {
	max-width: 820px;
	margin: 60px auto 80px;
	padding: 0 24px;
	color: #1f2937;
}

.faq-header {
	text-align: center;
	margin-bottom: 48px;
}

.faq-header h1 {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.faq-header p {
	font-size: 16px;
	color: #64748b;
	margin: 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.faq-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.faq-item[open] {
	border-color: #93c5fd;
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.10);
}

.faq-summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 56px 20px 24px;
	font-size: 16px;
	font-weight: 600;
	color: #0f172a;
	position: relative;
	user-select: none;
	line-height: 1.4;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { content: ''; }

.faq-summary::after {
	content: '';
	position: absolute;
	right: 24px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 2px solid #64748b;
	border-bottom: 2px solid #64748b;
	transform: translateY(-75%) rotate(45deg);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] .faq-summary::after {
	transform: translateY(-25%) rotate(-135deg);
	border-color: #2563eb;
}

.faq-summary:hover { color: #2563eb; }

.faq-answer {
	padding: 0 24px 22px;
	color: #475569;
	font-size: 15px;
	line-height: 1.65;
}

.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child  { margin-bottom: 0; }

.faq-empty {
	text-align: center;
	padding: 64px 24px;
	color: #94a3b8;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px dashed #cbd5e1;
}

.faq-back {
	display: inline-block;
	margin-top: 40px;
	font-size: 14px;
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
}

.faq-back:hover { text-decoration: underline; }
