/* ═══════════════════════════════════════════════════════════════════════════
   FINALER OPTIMIERTER CSS-CODE FÜR EXPRESSVERSAND-CHINA.DE
   ═══════════════════════════════════════════════════════════════════════════
   
   Version: 2.0 Final
   Datum: 26.11.2024
   
   Optimierungen:
   ✅ CSS-Variablen für bessere Wartbarkeit
   ✅ Doppelte Regeln zusammengeführt
   ✅ Konsistente Formatierung
   ✅ Carousel mit hellblauem Hintergrund
   ✅ Hover-Effekt: Dunkelblau mit weißer Schrift
   ✅ Optimale Performance
   ✅ Vollständig responsive
   
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLEN & RESET
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
	/* Hauptfarben */
	--blue: #005b9f;
	--blue-dark: #004c97;
	--blue-hover: #0073c5;
	--orange: #f39200;
	--orange-light: #f7941d;
	--orange-hover: #ff9c26;
	
	/* Neutrale Farben */
	--dark: #0a1020;
	--text-primary: #222;
	--text-secondary: #555;
	--text-light: #666;
	
	/* Hintergrundfarben */
	--light-bg: #f5f7fb;
	--white: #ffffff;
	--grey-light: #f5f5f5;
	--carousel-bg: #e8f4fc;
	
	/* Schatten */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 14px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 12px 40px rgba(102, 126, 234, 0.15);
	
	/* Übergänge */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background: var(--white);
}

a {
	color: var(--orange);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. LAYOUT & CONTAINER
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

section {
	padding: 40px 0;
}

.section-light {
	background: var(--white);
}

.section-grey {
	background: var(--light-bg);
}

.section-title {
	font-size: 1.4rem;
	color: var(--blue);
	margin-bottom: 10px;
}

.section-subtitle {
	font-size: 0.98rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
	max-width: 680px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

header {
	background: var(--white);
	border-bottom: 1px solid #e1e4ec;
}

.topbar {
	background: var(--blue);
	color: var(--white);
	font-size: 0.9rem;
}

.topbar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 6px 0;
	gap: 16px;
}

.topbar a {
	color: var(--white);
	font-weight: 500;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
}

.logo {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--blue);
}

.nav-links {
	display: flex;
	gap: 16px;
	font-size: 0.95rem;
}

.nav-links a {
	color: var(--dark);
	font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
	background: linear-gradient(135deg, var(--blue) 0%, #002847 40%, var(--orange) 100%);
	color: var(--white);
	padding: 60px 0 50px;
}

.hero-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
}

.hero-text {
	flex: 1 1 320px;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 4px 14px;
	font-size: 0.8rem;
	margin-bottom: 10px;
}

.hero-badge-text,
.hero-badge strong {
	font-size: 1.25rem;
	font-weight: 700;
	display: block;
	margin: 0;
}

.hero h1 {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 12px;
}

.hero p {
	font-size: 1rem;
	max-width: 540px;
	margin-bottom: 16px;
}

.hero-bullets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 10px;
	margin-bottom: 18px;
	font-size: 0.92rem;
}

.hero-bullets span::before {
	content: "✓ ";
	color: var(--white);
	font-weight: 700;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Hero Sidebox */
.hero-sidebox {
	flex: 1 1 280px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 18px 18px 16px;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.9rem;
}

.hero-sidebox h2 {
	font-size: 1.05rem;
	margin-bottom: 10px;
}

.hero-sidebox ul {
	list-style: none;
}

.hero-sidebox li {
	margin-bottom: 6px;
}

.hero-sidebox li::before {
	content: "• ";
	color: var(--orange);
	font-weight: 700;
}

.hero-note {
	margin-top: 8px;
}

/* Hero Partners */
.hero-partners {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 25px;
	margin-bottom: 25px;
	flex-wrap: wrap;
}

.partner-label {
	font-size: 0.9rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.6);
	margin-right: 10px;
}

.partner-logo {
	height: 35px;
	width: auto;
	transition: all var(--transition-normal);
}

.partner-logo path {
	fill: var(--white) !important;
	opacity: 0.5;
	transition: opacity var(--transition-normal);
}

.partner-logo:hover path {
	opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-primary {
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 999px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: background var(--transition-fast);
}

.btn-primary:hover {
	background: var(--orange-hover);
	text-decoration: none;
}

.btn-ghost {
	display: inline-block;
	background: transparent;
	color: var(--white);
	border-radius: 999px;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	transition: background var(--transition-fast);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

.btn-submit {
	background-color: #d32f2f;
	color: var(--white);
	border: none;
	padding: 12px 25px;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	transition: background var(--transition-fast);
}

.btn-submit:hover {
	background-color: #b71c1c;
}

.btn-email {
	margin-top: 8px;
	display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. WARUM EXPRESS CHINA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

#warum-express-china {
	padding: 60px 0;
}

.warum-express-grid {
	display: grid;
	gap: 2.5rem;
	align-items: flex-start;
}

@media (min-width: 900px) {
	.warum-express-grid {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
	}
}

.warum-express-text p {
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--text-secondary);
}

.warum-express-text .section-subtitle {
	margin-bottom: 1.25rem;
}

#warum-express-china a {
	color: var(--orange-light);
	font-weight: 600;
	text-decoration: none;
}

#warum-express-china a:hover {
	text-decoration: underline;
}

/* Highlight Box */
.warum-express-highlight {
	background: #f5f8ff;
	border-radius: 14px;
	border: 1px solid rgba(0, 76, 151, 0.16);
	padding: 22px 24px 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.warum-express-highlight h3 {
	margin-top: 0;
	margin-bottom: 0.9rem;
	font-size: 1.2rem;
	color: var(--blue-dark);
}

.warum-express-highlight ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.1rem;
}

.warum-express-highlight li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.55rem;
	font-size: 0.96rem;
	color: #333333;
}

.warum-express-highlight .check-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 2px solid var(--orange-light);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--orange-light);
}

.warum-express-badge {
	display: inline-block;
	margin: 0;
	padding: 6px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--orange-light), #ffb347);
	color: var(--white);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. ABLAUF / STEPS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.step {
	background: var(--grey-light);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid #e0e0e0;
	transition: all var(--transition-normal);
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--blue-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--blue-dark);
	transition: all var(--transition-normal);
}

.step h3 {
	font-size: 1rem;
	margin-bottom: 6px;
	color: var(--blue);
	transition: color var(--transition-normal);
}

.step p {
	transition: color var(--transition-normal);
}

/* Hover-Effekt: Blauer Hintergrund mit weißer Schrift */
.step:hover {
	background: var(--blue-dark);
	border-color: var(--blue-dark);
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step:hover h3,
.step:hover p,
.step:hover .step-number {
	color: var(--white);
	border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-section {
	max-width: 1100px;
	margin: 2rem auto 3rem auto;
}

.faq-accordion {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-accordion-item {
	border-radius: 14px;
	background-color: var(--white);
	box-shadow: 0 0 0 1px #eceff4;
	overflow: hidden;
}

.faq-accordion-header {
	width: 100%;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 1rem;
	font-weight: 600;
	color: #111;
	position: relative;
	transition: background-color var(--transition-fast);
}

.faq-accordion-header::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 4px;
	border-radius: 999px;
	background: var(--orange);
}

.faq-accordion-question {
	text-align: left;
}

.faq-accordion-icon {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111;
	transition: transform 0.25s ease;
}

.faq-accordion-body {
	max-height: 0;
	overflow: hidden;
	padding: 0 22px;
	font-size: 0.96rem;
	color: #333;
	transition: max-height 0.25s ease, padding-bottom 0.25s ease, padding-top 0.25s ease;
	border-top: 1px solid #f0f2f7;
}

.faq-accordion-body p {
	padding: 12px 0 16px;
	margin: 0;
}

.faq-accordion-item.is-open .faq-accordion-body {
	max-height: 400px;
	padding-top: 6px;
}

.faq-accordion-item.is-open .faq-accordion-icon {
	transform: rotate(45deg);
}

.faq-accordion-header:hover {
	background-color: #fafbff;
}

.faq-accordion-header:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. WEITERE INFORMATIONEN CAROUSEL - MIT HELLBLAUEM HINTERGRUND
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section mit hellblauem Hintergrund */
#weitere-informationen {
	position: relative;
	background: var(--carousel-bg);
	padding: 50px 0;
}

/* Titel in dunkelblauem Ton */
#weitere-informationen .section-title {
	color: var(--blue-dark);
}

#weitere-informationen .section-subtitle {
	color: var(--text-secondary);
}

/* Carousel Wrapper */
.info-carousel-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.info-carousel {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 0.5rem 0;
}

.info-carousel::-webkit-scrollbar {
	height: 6px;
}

.info-carousel::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.5);
}

.info-carousel::-webkit-scrollbar-thumb {
	background: rgba(0, 91, 159, 0.3);
	border-radius: 3px;
}

.info-carousel::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 91, 159, 0.5);
}

/* Info Card Basis - Weiß auf hellblauem Hintergrund */
.info-card {
	flex: 0 0 260px;
	scroll-snap-align: start;
	border-radius: 12px;
	padding: 1.25rem;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 91, 159, 0.1);
	border: 1px solid rgba(0, 91, 159, 0.15);
	transition: all var(--transition-normal);
	position: relative;
}

/* Link in der Karte */
.info-card a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.info-card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
	color: var(--blue-dark);
	transition: color var(--transition-normal);
}

.info-card p {
	font-size: 0.9rem;
	margin: 0;
	color: var(--text-secondary);
	transition: color var(--transition-normal);
	line-height: 1.6;
}

/* Link-Indicator */
.card-link-indicator {
	display: inline-block;
	margin-top: 15px;
	color: var(--orange);
	font-weight: 600;
	font-size: 0.95rem;
	transition: transform var(--transition-normal), color var(--transition-normal);
}

/* HOVER-EFFEKT: Dunkelblauer Hintergrund mit weißer Schrift */
.info-card:hover {
	background: var(--blue-dark);
	border-color: var(--blue-dark);
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 76, 151, 0.35);
}

.info-card:hover h3 {
	color: var(--white);
}

.info-card:hover p {
	color: rgba(255, 255, 255, 0.95);
}

.info-card:hover .card-link-indicator {
	color: var(--white);
	transform: translateX(5px);
}

/* Focus State für Accessibility */
.info-card a:focus {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
	border-radius: 12px;
}

/* Navigation Buttons */
.info-carousel-nav {
	background: var(--white);
	border: 2px solid var(--blue);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--blue);
	transition: all var(--transition-fast);
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 91, 159, 0.15);
}

.info-carousel-nav:hover {
	background: var(--blue);
	color: var(--white);
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(0, 91, 159, 0.25);
}

.info-carousel-nav:active {
	transform: scale(0.95);
}

.info-carousel-nav:focus {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
}

.info-carousel-nav span[aria-hidden="true"] {
	pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. KONTAKT / FORMULAR
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-box {
	background: var(--white);
	border-radius: 12px;
	padding: 18px;
	border: 1px solid #e1e4ec;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.contact-box h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
	color: var(--blue);
}

.contact-box p {
	font-size: 0.95rem;
}

/* Formular */
.form-group {
	margin-bottom: 15px;
}

.form-label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--blue);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-checkbox {
	margin-right: 10px;
}

/* Honeypot verstecken */
.honigtopf-feld {
	display: none;
}

/* Alerts */
.alert-success,
.alert-error {
	padding: 15px 20px;
	border-radius: 4px;
	margin-bottom: 20px;
	animation: slideDown 0.3s ease;
}

.alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Trust Badge */
.trust-badge {
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border: 2px solid var(--white);
	display: block;
	margin: 0 auto;
	transition: transform var(--transition-normal);
}

.trust-badge:hover {
	transform: scale(1.05);
}

.contact-trust-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 25px;
	background: #f8f9fa;
	padding: 10px 15px;
	border-radius: 8px;
	border-left: 4px solid #2ecc71;
}

/* ═══════════════════════════════════════════════════════════════════════════
   12. FIXED CTA BUTTONS (WhatsApp & Telefon)
   ═══════════════════════════════════════════════════════════════════════════ */

.fixed-cta {
	position: fixed;
	right: 16px;
	bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 9999;
}

.fixed-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
	color: var(--white);
	text-decoration: none;
	border: none;
	transition: all var(--transition-fast);
}

.fixed-btn-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.fixed-btn-text {
	line-height: 1;
}

.fixed-btn-whatsapp {
	background-color: #25D366;
}

.fixed-btn-call {
	background-color: var(--orange);
}

.fixed-btn:hover {
	text-decoration: none;
	filter: brightness(1.05);
	transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
	background: #0b1325;
	color: #ccd1e5;
	font-size: 0.85rem;
	padding: 24px 0 16px;
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 12px;
}

.footer-title {
	font-weight: 600;
	color: var(--white);
	margin-bottom: 6px;
}

.footer-bottom {
	border-top: 1px solid #252c3f;
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.footer-bottom a {
	color: #ccd1e5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   14. SUBPAGES (Impressum, Datenschutz, etc.)
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-subpage {
	padding-top: 40px;
	padding-bottom: 32px;
}

.hero-inner-subpage {
	justify-content: flex-start;
}

.hero-subpage .hero-text {
	max-width: 720px;
}

.hero-subpage h1 {
	font-size: 1.9rem;
	margin-bottom: 10px;
}

.hero-subpage p {
	font-size: 0.98rem;
}

.legal-grid {
	max-width: 1000px;
	margin: 26px auto 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}

.legal-card {
	background-color: var(--white);
	border-radius: 14px;
	padding: 16px 18px 14px;
	border: 2px solid var(--blue);
	box-shadow: 0 0 0 1px rgba(10, 16, 32, 0.03);
	font-size: 0.95rem;
	transition: all var(--transition-fast);
}

.legal-card:hover {
	background-color: var(--orange);
	color: var(--white);
	border-color: var(--blue);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.legal-card:hover h2,
.legal-card:hover p,
.legal-card:hover a {
	color: var(--white);
}

.legal-card a {
	color: var(--orange);
	text-decoration: none;
}

.legal-card a:hover {
	text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════
   15. GRADIENT SEPARATOR
   ═══════════════════════════════════════════════════════════════════════════ */

.section-gradient-separator {
	width: 100%;
	height: 70px;
	background: linear-gradient(90deg, #0a2340 0%, #33383b 45%, #8b6230 100%);
	border-bottom: 1px solid #dddddd;
}

/* ═══════════════════════════════════════════════════════════════════════════
   16. RESPONSIVE / MEDIA QUERIES
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
	/* Navigation */
	.nav-links {
		display: none;
	}
	
	.topbar-inner {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	/* Hero */
	.hero {
		padding-top: 40px;
	}
	
	.hero h1 {
		font-size: 1.75rem;
	}
	
	/* FAQ */
	.faq-accordion-header {
		padding: 16px 18px;
	}
	
	.faq-accordion-body {
		padding: 0 18px;
	}
	
	/* Carousel */
	#weitere-informationen {
		padding: 40px 0;
	}
	
	.info-carousel-wrapper {
		padding: 0 40px;
	}
	
	.info-card {
		flex: 0 0 240px;
		padding: 1rem;
	}
	
	.info-carousel-nav {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}
	
	/* Fixed CTA */
	.fixed-cta {
		right: 10px;
		bottom: 10px;
		gap: 8px;
	}
	
	.fixed-btn {
		padding: 10px 16px;
		font-size: 0.95rem;
	}
	
	/* Gradient Separator */
	.section-gradient-separator {
		height: 50px;
	}
	
	/* Subpages */
	.hero-subpage {
		padding-top: 32px;
		padding-bottom: 24px;
	}
	
	.hero-subpage h1 {
		font-size: 1.6rem;
	}
	
	.legal-grid {
		margin-top: 20px;
		gap: 14px;
	}
}

@media (max-width: 576px) {
	.info-carousel-wrapper {
		gap: 0.5rem;
		padding: 0 35px;
	}
	
	.info-card {
		flex: 0 0 220px;
		padding: 0.9rem;
	}
	
	.info-card h3 {
		font-size: 1rem;
	}
	
	.info-card p {
		font-size: 0.85rem;
	}
}

.contact-box-item {
	flex: 1;
	min-width: 300px;
}