.faq-page {
	background: #f4f6fb;
	padding: 32px 0 56px;
}

.faq-hero {
	background: linear-gradient(120deg, #0f3856 0%, #1b6fa4 55%, #62c2dd 100%);
	border-radius: 28px;
	color: #ffffff;
	padding: 40px 36px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(13, 32, 49, 0.25);
}

.faq-hero::before,
.faq-hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}

.faq-hero::before {
	width: 220px;
	height: 220px;
	top: -70px;
	right: -30px;
}

.faq-hero::after {
	width: 140px;
	height: 140px;
	bottom: -50px;
	right: 160px;
}

.faq-kicker {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	font-weight: 700;
	opacity: 0.85;
	margin-bottom: 10px;
}

.faq-hero h1 {
	font-size: clamp(2rem, 4vw, 2.7rem);
	font-weight: 700;
	margin-bottom: 10px;
}

.faq-hero p {
	font-size: 1.05rem;
	max-width: 560px;
	margin-bottom: 0;
}

.faq-content {
	margin-top: 28px;
}

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

.faq-item {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid rgba(15, 30, 45, 0.08);
	box-shadow: 0 20px 40px rgba(15, 30, 45, 0.08);
	padding: 0;
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 20px 24px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f2a3d;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

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

.faq-item summary::after {
	content: "+";
	font-size: 1.4rem;
	color: #1b6fa4;
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: "–";
	transform: translateY(-1px);
}

.faq-answer {
	padding: 0 24px 22px;
	color: #4b5a6a;
}

.faq-answer p {
	margin: 0 0 12px;
}

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

.faq-answer ul,
.faq-answer ol {
	margin: 0 0 12px 20px;
}

.faq-answer a {
	color: #1b6fa4;
	font-weight: 600;
	text-decoration: none;
}

.faq-answer a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.faq-hero {
		padding: 32px 24px;
	}

	.faq-item summary {
		padding: 18px 18px;
	}

	.faq-answer {
		padding: 0 18px 20px;
	}
}
