/* BEGIN - CUSTOM CSS */

/* ==========================================================================
   CSS Custom Properties (Brand Colors & Design Tokens)
   ========================================================================== */
:root {
	--color-brand:        #005ea8;
	--color-brand-dark:   #004c8c;
	--color-brand-light:  #0073c5;
	--color-header-bg:    #b3bbc3;
	--color-bg-light:     #f5f5f5;
	--color-border:       #dbdbdb;
	--color-pro:          #239212;
	--color-contra:       #db0000;
	--color-star:         #ffb400;
	--color-text:         #333;
	--color-text-muted:   #555;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header_bottom {
	background: var(--color-header-bg);
	padding-top: 1rem;
	padding-bottom: 1rem;
	color: #000000;
}
.header_bottom a {
	color: #000000;
	font-weight: bold;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
	font-size: 1.6rem !important;
}
.content ul {
	margin-left: 15px !important;
	line-height: 1.75;
}
blockquote {
	position: relative;
	margin: 0 25px;
	font-style: italic;
}
blockquote::before {
	content: "„";
	left: -25px;
	top: -11px;
	position: absolute;
	color: var(--color-brand);
	display: inline-block;
	font-size: 50px;
	line-height: 0;
}
blockquote::after {
	content: """;
	right: 0;
	bottom: -7px;
	position: absolute;
	color: var(--color-brand);
	display: inline-block;
	font-size: 50px;
	line-height: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
table th {
	background: var(--color-border);
	color: #ffffff;
	border: 1px solid var(--color-brand);
}
table th, table td {
	padding: 10px;
}
table td {
	border: 1px solid var(--color-border) !important;
}

/* ==========================================================================
   Schema FAQ
   ========================================================================== */
.schema-faq {
	margin-top: 2em;
}
.schema-faq br {
	display: none;
}
.schema-faq::before {
	content: "Das Wichtigste in Kürze";
	background-color: var(--color-brand);
	font-family: helvetica;
	font-weight: 600;
	padding: 12px;
	color: white;
	border-radius: 4px;
}
.schema-faq .schema-faq-section {
	background: var(--color-bg-light) !important;
	margin: 8px 0px 16px 0px !important;
	padding: 12px 16px 2px 25px !important;
	border-style: solid !important;
	border-width: 0px 0px 0px 4px !important;
	border-color: var(--color-brand) !important;
	border-radius: 0px 4px 4px 4px !important;
}
.schema-faq-section p {
	margin-bottom: 10px !important;
}

/* ==========================================================================
   Tip Box
   ========================================================================== */
.tipp {
	background: var(--color-bg-light);
	float: right;
	width: 300px;
	margin-left: 1em;
	margin-bottom: 1em;
	line-height: 1.75;
}
.tipp-titel {
	color: #ffffff;
	background: var(--color-brand);
	font-weight: bold;
	padding: 10px;
}
.tipp-inhalt {
	padding: 10px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.clear {
	display: block;
	clear: both;
}
figure {
	margin: 0;
}
.wp-caption {
	background: var(--color-bg-light);
}
.wp-caption-text {
	padding: 5px 10px 10px 10px;
}

/* ==========================================================================
   Alignment
   ========================================================================== */
.alignleft {
	float: left;
	margin-right: 1em;
	margin-bottom: 1em;
}
.alignright {
	float: right;
	margin-left: 1em;
	margin-bottom: 1em;
}
.aligncenter {
	margin: 0 auto 1em auto;
}

/* ==========================================================================
   Pro / Contra List
   ========================================================================== */
ul.pro-contra {
	list-style: none;
	margin-left: 0 !important;
}
li.pro::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f055";
	margin-right: 10px;
	color: var(--color-pro);
}
li.contra::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f056";
	margin-right: 10px;
	color: var(--color-contra);
}

/* ==========================================================================
   CLK Widget
   ========================================================================== */
.clk-widget {
	border: 1px solid var(--color-brand);
	background: var(--color-bg-light);
}
.clk-widget a {
	color: #000000;
}
.clk-widget a:hover {
	text-decoration: none;
}
.clk-widget .top {
	padding: 10px 10px 0 10px;
	color: var(--color-brand);
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
}
.clk-widget .bottom {
	display: block;
	padding: 10px;
}
.clk-widget .button {
	background: var(--color-brand);
	color: #fff;
	font-weight: bold;
	border: 1px solid #000;
}
.clk-widget .button:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Table of Contents
   ========================================================================== */
#toc_container {
	background: var(--color-bg-light);
	padding: 10px;
	margin-bottom: 1em;
}
#toc_container .toc_title {
	font-weight: bold;
	margin: 0;
}
#toc_container ol {
	margin: 0;
	padding: 0 0 0 16px;
	line-height: 1.75;
}

/* ==========================================================================
   Comments
   ========================================================================== */
#comments label {
	display: block;
}
#comments textarea,
#comments input[type="text"],
#comments input[type="email"] {
	width: 500px;
	font-size: 14px;
	padding: 10px;
	outline: 0;
	border: 1px solid #ccc;
}
#comments textarea:focus,
#comments input[type="text"]:focus,
#comments input[type="email"]:focus {
	border-color: var(--color-brand);
}
#comments input[type="submit"] {
	background: var(--color-brand);
	color: #fff;
	font-weight: bold;
	border: 1px solid #000;
	padding: 10px;
	font-size: 14px;
}
#comments input[type="submit"]:hover {
	cursor: pointer;
	text-decoration: underline;
}
ol.comment-list {
	padding: 0;
	list-style: none;
}
.comment-meta {
	margin-bottom: 10px;
}
#respond {
	border-top: 1px solid #ccc;
	padding-top: 10px;
}

/* ==========================================================================
   Post Listing
   ========================================================================== */
.post {
	clear: both;
	display: block;
	margin-bottom: 25px;
}
.post img {
	width: 200px;
	float: left;
	margin-right: 25px;
}
.share-btns {
	margin-bottom: 1em;
}

/* ==========================================================================
   Responsive — Small screens
   ========================================================================== */
@media print, screen and (max-width: 768px) {
	.tipp {
		float: none;
		width: 100%;
		margin-left: 0;
		display: block;
	}
	figure.wp-caption,
	figure.wp-caption img {
		width: 100% !important;
	}
	#comments textarea,
	#comments input[type="text"],
	#comments input[type="email"] {
		width: 100%;
	}
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.no-margin-bottom {
	margin-bottom: 0 !important;
}
.margin-top-half {
	margin-top: .5em !important;
}
.title.is-7 {
	font-size: .9285714286rem !important;
}

/* ==========================================================================
   Advantages List
   ========================================================================== */
ul.mb-advantages {
	margin-left: 0 !important;
}
ul.mb-advantages li {
	list-style: none;
}
ul.mb-advantages li::before {
	font-family: 'Font Awesome 5 Free';
	content: "\f058";
	color: #18a31c;
	margin-right: 5px;
}

/* ==========================================================================
   Inline Note Tooltip
   ========================================================================== */
span.note {
	position: relative;
}
span.note svg {
	color: var(--color-brand);
	font-size: 12px;
	margin-top: -1px;
}
span.note span.text {
	display: none;
}
span.note:hover span.text {
	display: block;
	background: var(--color-bg-light);
	border: 1px solid #ddd;
	padding: 5px 10px;
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 300px;
}
@media screen and (max-width: 639px) {
	span.note:hover span.text {
		position: unset;
		width: 100%;
	}
}

/* ==========================================================================
   Accordion / FAQ
   ========================================================================== */
.accordion-container {
	margin-top: 2rem;
	border: 1px solid #e0e0e0;
}
.accordion-item + .accordion-item {
	border-top: 1px solid #e0e0e0;
}
.accordion-header {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: background-color 0.3s;
}
.accordion-header:hover {
	background-color: var(--color-bg-light);
}
.accordion-header::after {
	content: "+";
	position: absolute;
	right: 1rem;
	font-size: 1.3rem;
	transition: transform 0.3s ease;
	color: #333333;
}
.accordion-header.active {
	background: var(--color-bg-light);
	border-bottom: 1px solid #e0e0e0;
}
.accordion-header.active::after {
	content: "−";
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 1rem;
}
.accordion-content p {
	margin: 1rem 0;
}

/* ==========================================================================
   Seal
   ========================================================================== */
.a-seal {
	float: right;
	margin-left: 100px;
}
@media screen and (max-width: 639px) {
	.a-seal {
		margin: 0 0 .6666rem 0;
	}
}

/* ==========================================================================
   Button
   ========================================================================== */
a.button {
	border-radius: 3px;
	border: 0;
	background: var(--color-brand);
	color: #fff;
	font-weight: bold;
	font-size: 16px;
}
a.button:hover {
	color: #fff;
	text-decoration: underline;
}

/* ==========================================================================
   Schritte Table
   ========================================================================== */
table.schritte tr th {
	vertical-align: top;
	text-align: center !important;
	background: none;
	border: none !important;
	font-size: 16px;
}
table.schritte tr td {
	vertical-align: top;
	text-align: center !important;
	border: none !important;
}
#schritte h2 {
	margin-top: 0;
}
#schritte p {
	display: none;
}

/* ==========================================================================
   Steps Box
   ========================================================================== */
.steps-box {
	background-color: #fff;
	border: 1px solid #ededed;
	padding: 25px;
	color: var(--color-text);
	margin-bottom: 1rem;
}
.steps-box p {
	display: none;
}
.steps-box__title {
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}
.steps-box__icon {
	width: 28px;
	height: 28px;
	stroke: var(--color-brand-light);
}
.steps-box__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
}
.steps-box__item {
	flex: 1 1 calc(33.333% - 1rem);
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background-color: #f9fbfd;
	border-radius: 10px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}
.steps-box__item:hover {
	border-color: var(--color-brand-light);
}
.steps-box__content h3 {
	font-size: 1.1rem;
	color: var(--color-brand-dark);
	margin: 0 0 0.4rem;
}
.steps-box__content b {
	color: var(--color-brand-dark);
	font-size: 16px;
	margin-bottom: .3333em;
	display: inline-block;
}
@media (max-width: 900px) {
	.steps-box__item {
		flex: 1 1 100%;
	}
	.steps-box__container {
		flex-direction: column;
	}
	.steps-box__title {
		font-size: 1.6rem;
	}
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
	text-align: center;
}
.cta p {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.125;
}

a.kundenbewertungen {
	display: block;
	text-align: right;
}

/* ==========================================================================
   Testimonials Slider
   ========================================================================== */
.testimonials {
	max-width: 960px;
}
.testimonials p {
	text-align: center;
}
h2.testimonials__heading {
	margin-bottom: 1.4rem;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: -5px !important;
}
.testimonials__heading {
	font-size: 1.8rem;
	color: var(--color-brand-dark);
	text-align: center;
	margin-bottom: 2rem;
}
.testimonials-shell {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonials-shell .swiper {
	width: 88%;
	max-width: 900px;
}
p.testimonial-card__text {
	font-style: italic;
}
p.testimonial-card__author {
	font-weight: bold;
}
.testimonial-card {
	background-color: #f9fbfd;
	border: 1px solid #e6e9ec;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	text-align: left;
	transition: transform .3s, box-shadow .3s;
	min-height: 134.23px;
}
.testimonial-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.testimonial-card__text {
	margin: 0 0 .8rem !important;
	color: var(--color-text);
	line-height: 1.5;
}
.testimonial-card__author {
	margin: 0;
	color: var(--color-text-muted);
	text-align: right !important;
	font-size: .95rem;
}
.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid #e6e9ec;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
	color: var(--color-brand);
	cursor: pointer;
	user-select: none;
}
.nav-arrow--prev {
	left: 0;
	z-index: 10;
}
.nav-arrow--next {
	right: 0;
	z-index: 10;
}
.nav-arrow:hover {
	filter: brightness(0.98);
}
.swiper-pagination-bullet {
	background: var(--color-brand-light);
	opacity: .35;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--color-brand) !important;
}
@media (max-width: 1024px) {
	.nav-arrow--prev { left: 8px; }
	.nav-arrow--next { right: 8px; }
}
.testimonial-card__stars {
	display: flex;
	gap: 0;
	margin-bottom: 0.8rem;
	justify-content: center;
}
.testimonial-card__stars br {
	display: none;
}
.star {
	width: 20px;
	height: 20px;
	fill: var(--color-star);
	flex-shrink: 0;
}
.star--inactive {
	fill: #e0e0e0;
	opacity: 0.8;
	width: 20px;
	height: 20px;
}
.testimonial-card:hover .star {
	transform: scale(1.05);
	transition: transform 0.2s ease;
}

/* ==========================================================================
   Payment Icon
   ========================================================================== */
.payment-rechnung {
	background-image: url(https://www.antrag24.de/mahnbescheid/wp-content/uploads/2026/02/payment-invoice.png);
	width: 60px;
	height: 41px;
	background-position: 0;
}

/* ==========================================================================
   Responsive — Logo & Navigation (extracted from legacy GF media queries)
   ========================================================================== */
@media screen and (max-width: 768px) {
	.logo__title {
		font-size: 21px;
	}
}
@media (min-width: 769px) {
	.header_bottom a {
		margin: 0 10px;
	}
	.header_bottom a:first-child {
		margin-left: 0;
	}
	.header_bottom a:last-child {
		margin-right: 0;
	}
}

/* ==========================================================================
   Miscellaneous
   ========================================================================== */
.orderbox {
	border-color: var(--color-brand);
	border-width: 2px;
}

/* END - CUSTOM CSS */
