/* ===== CC FAQ — gekapselt unter .efaq-section ===== */
.efaq-section {
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	color: #1a1a1a;
	max-width: 800px;
	margin: 2rem auto;
	padding: 0 1rem;
	line-height: 1.6;
}
.efaq-section *,
.efaq-section *::before,
.efaq-section *::after { box-sizing: border-box; }

.efaq-section .efaq-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(28px, 3.4vw, 42px) !important;
	font-weight: 800 !important;
	color: #1C244B !important;
	margin: 0 0 .5rem;
	letter-spacing: -0.01em;
	text-align: center;
}
.efaq-section .efaq-subtitle {
	font-family: inherit;
	font-size: 15px;
	color: #64748b;
	margin: 0 0 2.5rem;
	text-align: center;
}

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

.efaq-section .efaq-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.efaq-section .efaq-item[open] {
	border-color: #1C244B;
	box-shadow: 0 2px 8px rgba(28, 36, 75, 0.08);
}

.efaq-section .efaq-question {
	list-style: none;
	cursor: pointer;
	padding: 20px 24px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	user-select: none;
	transition: color .2s ease;
}
.efaq-section .efaq-question::-webkit-details-marker { display: none; }
.efaq-section .efaq-question::marker { content: ""; }
.efaq-section .efaq-question:hover { color: #1C244B; }

/* Plus/Minus-Toggle aus reinem CSS, kein Icon */
.efaq-section .efaq-toggle {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	transition: transform .3s ease;
}
.efaq-section .efaq-toggle::before,
.efaq-section .efaq-toggle::after {
	content: "";
	position: absolute;
	background: #1C244B;
	border-radius: 1px;
	top: 50%;
	left: 50%;
	transition: transform .3s ease;
}
.efaq-section .efaq-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.efaq-section .efaq-toggle::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.efaq-section .efaq-item[open] .efaq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.efaq-section .efaq-answer {
	padding: 0 24px 22px;
	font-family: inherit;
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
}
.efaq-section .efaq-answer p { margin: 0 0 .75rem; }
.efaq-section .efaq-answer p:last-child { margin-bottom: 0; }
.efaq-section .efaq-answer a { color: #1C244B; text-decoration: underline; }

@media (max-width: 600px) {
	.efaq-section .efaq-question { padding: 16px 18px; font-size: 15px; }
	.efaq-section .efaq-answer { padding: 0 18px 18px; font-size: 14px; }
}
