
/* =======================
   Service Boxen
======================= */

.service-boxes {
    margin-top: -150px;
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 0px,
        transparent 150px,
        #D9D9D9 110px,
        #D9D9D9 100%
    );
}

.service-boxes-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 0px;
}

.service-boxes .container {
    padding-left: 0px;
    padding-right: 0px;
}

.service-box {
    background: #E0A700;
    border-radius: 10px;
    padding: 30px 30px 40px 30px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.service-box h3 {
    margin: 0px 0px 20px 0px;
    font-size: 22px;
    line-height: 1.25;
}

.service-box p {
    margin: 0px 0px 30px 0px;
    font-size: 15px;
    line-height: 1.5;
}

.arrow-icon {
    width: 50px;
    height: 50px;
    margin: 0px auto 25px auto;
    background-image: url("../images/icons3.png");
    background-repeat: no-repeat;
}

.icon-arrow {
    background-position: -25px -20px;
}

.btn-primary {
    display: inline-block;
    background: #2A66A8;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: scale(0.97);
}




@media (max-width: 1279px) {
    .service-boxes .container, .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}



/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .service-boxes {
        margin-top: -150px;
        padding-top: 0px;
        padding-bottom: 70px;
        background: linear-gradient(
            to bottom,
            transparent 0px,
            transparent 150px,
            #D9D9D9 90px,
            #D9D9D9 100%
        );
    }

    .service-boxes-inner {
        gap: 30px;
        margin-top: 0px;
    }

    .service-boxes .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .service-box {
        padding: 35px 20px 35px 20px;
    }

    .service-box h3 {
        font-size: 20px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .service-boxes {
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 50px;
        background: #D9D9D9;
    }

    .service-boxes-inner {
        flex-direction: column;
        gap: 30px;
        margin-top: 0px;
    }

    .service-boxes .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-box {
        padding: 30px 20px 30px 20px;
    }
}



/* =======================
   MAIN CONTENT
======================= */

.main-content {
    background: #FFFFFF;
    padding: 80px 0px;
}

.main-content-header {
    margin-bottom: 40px;
}

.main-content-headline {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
}

.main-content-box {
    background: #D9D9D9;
    padding: 30px;
    margin-bottom: 50px;
}

.main-content-box-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: bold;
}

.main-content-text,
.main-content-block {
    margin-bottom: 50px;
}

.main-content-text h2,
.main-content-block h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    line-height: 1.2;
}

.main-content-text p,
.main-content-block p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.4;
}

.main-content-block ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.main-content-block li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
}

.main-content-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 16px;
    height: 16px;
    background: url("../images/pfeil.png") no-repeat center;
    background-size: contain;
}

.main-content-cta {
    margin-top: 60px;
}

.main-content-btn {
    display: inline-block;
    margin-top: 20px;
    background: #E0A700;
    color: #000000;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-content-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.main-content-btn:active {
    transform: scale(0.97);
}

.main-content-box a,
.main-content-text a,
.main-content-block a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.main-content-box a:hover,
.main-content-text a:hover,
.main-content-block a:hover {
    text-decoration: none;
}

.main-content-box a:focus,
.main-content-text a:focus,
.main-content-block a:focus {
    text-decoration: none;
}


/* =======================
   1024–1199
======================= */

@media (min-width:1024px) and (max-width:1199px){

    .main-content {
        padding: 70px 0;
    }

    .main-content-headline {
        font-size: 34px;
    }

    .main-content-text h2,
    .main-content-block h2 {
        font-size: 24px;
    }

	.main-content-text p,
	.main-content-block p,
	.main-content-block li,
	.main-content-box p,
	.main-content-cta p {
		font-size: 15px;
	}
}

/* =======================
   <=1023
======================= */

@media (max-width:1023px){

    .main-content {
        padding: 60px 0;
    }

    .main-content-headline {
        font-size: 28px;
    }

    .main-content-text h2,
    .main-content-block h2 {
        font-size: 24px;
    }
}

/* =======================
   <=560
======================= */

@media (max-width:560px){

    .main-content {
        padding: 50px 0;
    }

    .main-content-headline {
        font-size: 25px;
    }

	.main-content-text p,
	.main-content-block p,
	.main-content-block li,
	.main-content-box p,
	.main-content-cta p {
		font-size: 15px;
	}
}




/* =======================
   Ablauf Hero
======================= */

.ablauf-hero {
    background-image: url("../pictures/bg2.webp");
    background-size: cover;
    background-position: center bottom;
    position: relative;
    min-height: 625px;
    z-index: 1;
}

.ablauf-hero-overlay {
    position: absolute;
    inset: 0;
}

.ablauf-hero-inner {
    position: relative;
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    padding: 175px 0px 250px 0px;
}

.ablauf-hero-title {
    color: #FFFFFF;
    font-size: 42px;
    max-width: 880px;
    margin: 0px auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    line-height: 1.3;
}


/* =======================
   Ablauf Boxen
======================= */

.ablauf-boxes {
    margin-top: -165px;
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 0px,
        transparent 165px,
        #D9D9D9 165px,
        #D9D9D9 100%
    );
}

.ablauf-boxes-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 0px;
}

.ablauf-boxes .container {
    padding-left: 0px;
    padding-right: 0px;
}

.ablauf-box {
    background: #E0A700;
    border-radius: 10px;
    padding: 30px 30px 40px 30px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.ablauf-box h3 {
    margin: 0px 0px 30px 0px;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
}

.ablauf-box p {
    margin: 0px;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
}

.ablauf-icon {
    width: 80px;
    height: 80px;
    margin: 0px auto 26px auto;
    background-image: url("../images/icons2.png");
    background-repeat: no-repeat;
}

.icon-ablauf-1 {
    background-position: 0px -6px;
}

.icon-ablauf-2 {
    background-position: 0px -134px;
}

.icon-ablauf-3 {
    background-position: 0px -260px;
}

@media (max-width: 1279px) {

    .ablauf-hero-inner {
        padding: 140px 25px 240px 25px;
    }

    .ablauf-boxes .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .ablauf-hero {
        min-height: 600px;
    }

    .ablauf-hero-inner {
        padding: 140px 25px 230px 25px;
    }

    .ablauf-hero-title {
        max-width: 820px;
        font-size: 36px;
        padding: 28px;
    }

    .ablauf-boxes {
        margin-top: -165px;
        padding-bottom: 70px;
        background: linear-gradient(
            to bottom,
            transparent 0px,
            transparent 165px,
            #D9D9D9 165px,
            #D9D9D9 100%
        );
    }

    .ablauf-boxes-inner {
        gap: 30px;
    }

    .ablauf-boxes .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .ablauf-box {
        padding: 35px 20px 35px 20px;
    }

    .ablauf-box h3 {
        font-size: 20px;
    }

    .ablauf-box p {
        font-size: 15px;
    }

    .ablauf-icon {
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: 20px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .ablauf-hero {
        background-position: center center;
        min-height: 260px;
    }

    .ablauf-hero-inner {
        padding: 80px 20px 80px 20px;
    }

    .ablauf-hero-title {
        max-width: 100%;
        font-size: 28px;
        padding: 20px;
    }

    .ablauf-boxes {
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 50px;
        background: #D9D9D9;
    }

    .ablauf-boxes .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ablauf-boxes-inner {
        flex-direction: column;
        gap: 30px;
    }

    .ablauf-box {
        padding: 30px 20px 30px 20px;
    }

    .ablauf-box h3 {
        margin: 0px 0px 18px 0px;
        font-size: 20px;
    }

    .ablauf-box p {
        font-size: 15px;
        line-height: 1.35;
    }

    .ablauf-icon {
		width: 80px;
		height: 80px;
		margin: 0px auto 26px auto;
		background-image: url("../images/icons2.png");
		background-repeat: no-repeat;
	}

	.icon-ablauf-1 {
		background-position: 0px -6px;
	}

	.icon-ablauf-2 {
		background-position: 0px -134px;
	}

	.icon-ablauf-3 {
		background-position: 0px -260px;
	}
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .ablauf-hero {
        min-height: 260px;
    }

    .ablauf-hero-inner {
        padding: 65px 20px 65px 20px;
    }

    .ablauf-hero-title {
        font-size: 25px;
        padding: 16px;
    }

    .ablauf-boxes {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .ablauf-box h3 {
        font-size: 20px;
    }

    .ablauf-box p {
        font-size: 15px;
    }

    .ablauf-icon {
		width: 80px;
		height: 80px;
		margin: 0px auto 26px auto;
		background-image: url("../images/icons2.png");
		background-repeat: no-repeat;
	}

	.icon-ablauf-1 {
		background-position: 0px -6px;
	}

	.icon-ablauf-2 {
		background-position: 0px -134px;
	}

	.icon-ablauf-3 {
		background-position: 0px -260px;
	}
}



/* =======================
   Verkehrsleitung Intro
======================= */

.verkehrsleitung-intro {
    background: #FFFFFF;
    padding: 80px 0px;
}

.verkehrsleitung-intro-header {
    margin-bottom: 55px;
}

.verkehrsleitung-intro-headline {
    margin: 0px 0px 20px 0px;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
}

.verkehrsleitung-intro-subheadline {
    margin: 0px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: bold;
    color: #2A66A8;
}

.verkehrsleitung-intro-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.verkehrsleitung-intro-content {
    width: 700px;
    max-width: 100%;
}

.verkehrsleitung-intro-content p {
    margin: 0px 0px 24px 0px;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
}

.verkehrsleitung-intro-content p:last-child {
    margin-bottom: 0px;
}

.verkehrsleitung-intro-image {
    width: 490px;
    flex: 0 0 490px;
}

.verkehrsleitung-intro-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .verkehrsleitung-intro {
        padding: 70px 0px;
    }

    .verkehrsleitung-intro .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .verkehrsleitung-intro-header {
        margin-bottom: 50px;
    }

    .verkehrsleitung-intro-headline {
        margin: 0px 0px 16px 0px;
        font-size: 34px;
    }

    .verkehrsleitung-intro-subheadline {
        font-size: 22px;
    }

    .verkehrsleitung-intro-body {
        gap: 50px;
    }

    .verkehrsleitung-intro-content {
        width: 58%;
    }

    .verkehrsleitung-intro-content p {
        margin: 0px 0px 22px 0px;
        font-size: 15px;
    }

    .verkehrsleitung-intro-image {
        width: 42%;
        flex: 0 0 42%;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .verkehrsleitung-intro {
        padding: 60px 0px;
    }

    .verkehrsleitung-intro .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .verkehrsleitung-intro-header {
        margin-bottom: 35px;
    }

    .verkehrsleitung-intro-headline {
        margin: 0px 0px 10px 0px;
        font-size: 28px;
        line-height: 1.2;
    }

    .verkehrsleitung-intro-subheadline {
        font-size: 28px;
        line-height: 1.2;
    }

    .verkehrsleitung-intro-body {
        display: block;
    }

    .verkehrsleitung-intro-content {
        width: 100%;
    }

    .verkehrsleitung-intro-content p {
        margin: 0px 0px 20px 0px;
        font-size: 16px;
        line-height: 1.3;
    }

    .verkehrsleitung-intro-image {
        width: 100%;
        margin-top: 35px;
    }

    .verkehrsleitung-intro-image img {
        display: block;
        width: 100%;
        height: auto;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .verkehrsleitung-intro {
        padding: 50px 0px;
    }

    .verkehrsleitung-intro-headline {
        font-size: 25px;
    }

    .verkehrsleitung-intro-subheadline {
        font-size: 25px;
    }

    .verkehrsleitung-intro-content p {
        font-size: 15px;
    }
}




/* =======================
   Verkehrsleitung FAQ
======================= */

.verkehrsleitung-faq {
    background: #FFFFFF;
    padding: 40px 0px 80px 0px;
}

.verkehrsleitung-faq-inner {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.faq-item,
.faq-cta {
    width: 100%;
}

.faq-cta {
    margin-top: 80px;
}

.faq-top {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.faq-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    background-image: url("../images/icons4.png");
    background-repeat: no-repeat;
    background-size: auto;
    margin-top: 2px;
}

.icon-vorteil-arrow {
    background-position: -5px -13px;
}

.icon-faq-info {
    background-position: -5px -122px;
}

.faq-question-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    max-width: calc(100% - 84px);
}

.faq-top h3 {
    display: inline-block;
    margin: 0px;
    font-size: 25px;
    line-height: 1.25;
    color: #000000;
}

.faq-top a {
    color: #000000;
    text-decoration: none;
}

.faq-line {
    width: calc(100% + 30px);
    height: 3px;
    background: #000000;
    margin-top: 18px;
}

.faq-content {
    margin-top: 18px;
}

.faq-content p {
    width: calc(100% - 84px);
    margin: 0px 0px 18px 84px;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
}

.faq-content p:last-child {
    margin-bottom: 0px;
}

.faq-cta p {
    width: calc(100% - 84px);
    margin: 18px 0px 25px 84px;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
}

.btn-faq {
    display: inline-block;
    margin-left: 84px;
    background: #E0A700;
    color: #000000;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.btn-faq:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-faq:active {
    transform: scale(0.97);
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .verkehrsleitung-faq {
        padding: 35px 0px 70px 0px;
    }

    .verkehrsleitung-faq .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .verkehrsleitung-faq-inner {
        gap: 40px;
    }
	
	.faq-cta {
		margin-top: 70px;
	}

    .faq-top {
        gap: 18px;
    }

    .faq-icon {
        width: 62px;
        height: 62px;
        flex: 0 0 62px;
        transform: scale(0.8);
        transform-origin: top left;
    }

    .faq-question-wrap {
        max-width: calc(100% - 79px);
    }

    .faq-top h3 {
        font-size: 21px;
    }

    .faq-line {
        width: calc(100% + 30px);
        margin-top: 16px;
    }

    .faq-content {
        margin-top: 16px;
    }

    .faq-content p {
        width: calc(100% - 79px);
        margin: 0px 0px 18px 79px;
        font-size: 15px;
    }

    .faq-cta p {
        width: calc(100% - 79px);
        margin: 16px 0px 22px 79px;
        font-size: 15px;
    }

    .btn-faq {
        margin-left: 79px;
        font-size: 18px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .verkehrsleitung-faq {
        padding: 0px 0px 60px 0px;
    }

    .verkehrsleitung-faq .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .verkehrsleitung-faq-inner {
        gap: 35px;
    }
	
	.faq-cta {
		margin-top: 60px;
	}

    .faq-top {
        gap: 12px;
    }

    .faq-question-wrap {
        display: block;
        flex: 1;
        max-width: none;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        background-size: 42px auto;
        margin-top: 1px;
    }
	
	.icon-vorteil-arrow {
        background-position: 0px -6px;
    }
	
	.icon-faq-info {
        background-position: 0px -70px;
    }

    .faq-top h3 {
        display: block;
        font-size: 22px;
        line-height: 1.25;
    }

    .faq-line {
        width: 100%;
        margin-top: 14px;
    }

    .faq-content {
        margin-top: 16px;
    }

    .faq-content p {
        width: calc(100% - 54px);
        margin: 0px 0px 18px 54px;
        font-size: 16px;
        line-height: 1.3;
    }

    .faq-cta p {
        width: calc(100% - 54px);
        margin: 16px 0px 22px 54px;
        font-size: 16px;
        line-height: 1.3;
    }

    .btn-faq {
        margin-left: 54px;
        font-size: 18px;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .verkehrsleitung-faq {
        padding: 0px 0px 50px 0px;
    }
	
	.faq-cta {
		margin-top: 50px;
	}

    .faq-top {
        gap: 10px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        background-size: 36px auto;
    }

    .icon-vorteil-arrow {
        background-position: 0px -5px;
    }
	
	.icon-faq-info {
        background-position: 0px -60px;
    }

    .faq-top h3 {
        font-size: 20px;
    }

    .faq-line {
        width: 100%;
        margin-top: 12px;
    }

    .faq-content p {
        width: calc(100% - 46px);
        margin: 0px 0px 16px 46px;
        font-size: 15px;
    }

    .faq-cta p {
        width: calc(100% - 46px);
        margin: 14px 0px 20px 46px;
        font-size: 15px;
    }

    .btn-faq {
        margin-left: 46px;
        font-size: 18px;
        padding: 14px 30px;
    }
}



/* =======================
   Zufriedenheit Hero
======================= */

.zufriedenheit-hero {
    background-image: url("../pictures/bg3.webp");
    background-size: cover;
    background-position: center center;
    position: relative;
    min-height: 625px;
    z-index: 1;
}

.zufriedenheit-hero-overlay {
    position: absolute;
    inset: 0;
}

.zufriedenheit-hero-inner {
    position: relative;
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    padding: 175px 0px 250px 0px;
}

.zufriedenheit-hero-title {
    color: #FFFFFF;
    font-size: 42px;
    max-width: 880px;
    margin: 0px auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    line-height: 1.3;
}


/* =======================
   Zufriedenheit Boxen
======================= */

.zufriedenheit-boxes {
    margin-top: -145px;
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 0px,
        transparent 145px,
        #D9D9D9 145px,
        #D9D9D9 100%
    );
}

.zufriedenheit-boxes-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 0px;
}

.zufriedenheit-boxes .container {
    padding-left: 0px;
    padding-right: 0px;
}

.zufriedenheit-box {
    background: #E0A700;
    border-radius: 10px;
    padding: 30px 30px 40px 30px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.zufriedenheit-box h3 {
    margin: 0px 0px 30px 0px;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
}

.zufriedenheit-box p {
    margin: 0px;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
}

.zufriedenheit-icon {
    width: 80px;
    height: 80px;
    margin: 0px auto 26px auto;
    background-image: url("../images/icons2.png");
    background-repeat: no-repeat;
}

.icon-zufriedenheit {
    background-position: 0px -380px;
}

@media (max-width: 1279px) {

    .zufriedenheit-hero-inner {
        padding: 140px 25px 240px 25px;
    }

    .zufriedenheit-boxes .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .zufriedenheit-hero {
        min-height: 600px;
    }

    .zufriedenheit-hero-inner {
        padding: 140px 25px 230px 25px;
    }

    .zufriedenheit-hero-title {
        max-width: 820px;
        font-size: 36px;
        padding: 28px;
    }

    .zufriedenheit-boxes {
        margin-top: -145px;
        padding-bottom: 70px;
        background: linear-gradient(
            to bottom,
            transparent 0px,
            transparent 145px,
            #D9D9D9 145px,
            #D9D9D9 100%
        );
    }

    .zufriedenheit-boxes-inner {
        gap: 30px;
    }

    .zufriedenheit-boxes .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .zufriedenheit-box {
        padding: 35px 20px 35px 20px;
    }

    .zufriedenheit-box h3 {
        font-size: 20px;
    }

    .zufriedenheit-box p {
        font-size: 15px;
    }

    .zufriedenheit-icon {
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: 20px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .zufriedenheit-hero {
		background-image: url("../pictures/bg3-mobil.webp");
        background-position: center center;
        min-height: 260px;
    }

    .zufriedenheit-hero-inner {
        padding: 80px 20px 80px 20px;
    }

    .zufriedenheit-hero-title {
        max-width: 100%;
        font-size: 28px;
        padding: 20px;
    }

    .zufriedenheit-boxes {
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 50px;
        background: #D9D9D9;
    }

    .zufriedenheit-boxes .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .zufriedenheit-boxes-inner {
        flex-direction: column;
        gap: 30px;
    }

    .zufriedenheit-box {
        padding: 30px 20px 30px 20px;
    }

    .zufriedenheit-box h3 {
        margin: 0px 0px 18px 0px;
        font-size: 20px;
    }

    .zufriedenheit-box p {
        font-size: 15px;
        line-height: 1.35;
    }

    .zufriedenheit-icon {
		width: 80px;
		height: 80px;
		margin: 0px auto 26px auto;
		background-image: url("../images/icons2.png");
		background-repeat: no-repeat;
	}

	.icon-zufriedenheit {
		background-position: 0px -380px;
	}
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .zufriedenheit-hero {
        min-height: 260px;
    }

    .zufriedenheit-hero-inner {
        padding: 65px 20px 65px 20px;
    }

    .zufriedenheit-hero-title {
        font-size: 25px;
        padding: 16px;
    }

    .zufriedenheit-boxes {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .zufriedenheit-box h3 {
        font-size: 20px;
    }

    .zufriedenheit-box p {
        font-size: 15px;
    }

    .zufriedenheit-icon {
		width: 80px;
		height: 80px;
		margin: 0px auto 26px auto;
		background-image: url("../images/icons2.png");
		background-repeat: no-repeat;
	}

	.icon-zufriedenheit {
		background-position: 0px -380px;
	}
}



/* =======================
   EU-Lizenz Intro
======================= */

.eu-lizenz-intro {
    background: #FFFFFF;
    padding: 80px 0px;
}

.eu-lizenz-intro-header {
    margin-bottom: 55px;
}

.eu-lizenz-intro-headline {
    margin: 0px 0px 20px 0px;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
}

.eu-lizenz-intro-subheadline {
    margin: 0px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: bold;
    color: #2A66A8;
}

.eu-lizenz-intro-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.eu-lizenz-intro-content {
    width: 700px;
    max-width: 100%;
}

.eu-lizenz-intro-content p {
    margin: 0px 0px 24px 0px;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
}

.eu-lizenz-intro-content p:last-child {
    margin-bottom: 0px;
}

.eu-lizenz-intro-image {
    width: 490px;
    flex: 0 0 490px;
}

.eu-lizenz-intro-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .eu-lizenz-intro {
        padding: 70px 0px;
    }

    .eu-lizenz-intro .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .eu-lizenz-intro-header {
        margin-bottom: 50px;
    }

    .eu-lizenz-intro-headline {
        margin: 0px 0px 16px 0px;
        font-size: 34px;
    }

    .eu-lizenz-intro-subheadline {
        font-size: 22px;
    }

    .eu-lizenz-intro-body {
        gap: 50px;
    }

    .eu-lizenz-intro-content {
        width: 58%;
    }

    .eu-lizenz-intro-content p {
        margin: 0px 0px 22px 0px;
        font-size: 15px;
    }

    .eu-lizenz-intro-image {
        width: 42%;
        flex: 0 0 42%;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .eu-lizenz-intro {
        padding: 60px 0px;
    }

    .eu-lizenz-intro .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .eu-lizenz-intro-header {
        margin-bottom: 35px;
    }

    .eu-lizenz-intro-headline {
        margin: 0px 0px 10px 0px;
        font-size: 28px;
        line-height: 1.2;
    }

    .eu-lizenz-intro-subheadline {
        font-size: 28px;
        line-height: 1.2;
    }

    .eu-lizenz-intro-body {
        display: block;
    }

    .eu-lizenz-intro-content {
        width: 100%;
    }

    .eu-lizenz-intro-content p {
        margin: 0px 0px 20px 0px;
        font-size: 16px;
        line-height: 1.3;
    }

    .eu-lizenz-intro-image {
        width: 100%;
        margin-top: 35px;
    }

    .eu-lizenz-intro-image img {
        display: block;
        width: 100%;
        height: auto;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .eu-lizenz-intro {
        padding: 50px 0px;
    }

    .eu-lizenz-intro-headline {
        font-size: 25px;
    }

    .eu-lizenz-intro-subheadline {
        font-size: 25px;
    }

    .eu-lizenz-intro-content p {
        font-size: 15px;
    }
}




/* =======================
   EU-Lizenz FAQ
======================= */

.eu-lizenz-faq {
    background: #FFFFFF;
    padding: 40px 0px 80px 0px;
}

.eu-lizenz-faq-inner {
    display: flex;
    flex-direction: column;
    gap: 45px;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .eu-lizenz-faq {
        padding: 35px 0px 70px 0px;
    }

    .eu-lizenz-faq .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .eu-lizenz-faq-inner {
        gap: 40px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .eu-lizenz-faq {
        padding: 0px 0px 60px 0px;
    }

    .eu-lizenz-faq .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .eu-lizenz-faq-inner {
        gap: 35px;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .eu-lizenz-faq {
        padding: 0px 0px 50px 0px;
    }
}




/* =======================
   Kosten Hero
======================= */

.kosten-hero {
    background-image: url("../pictures/bg4.webp");
    background-size: cover;
    background-position: center bottom;
    position: relative;
    min-height: 625px;
    z-index: 1;
}

.kosten-hero-overlay {
    position: absolute;
    inset: 0;
}

.kosten-hero-inner {
    position: relative;
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    padding: 175px 0px 250px 0px;
}

.kosten-hero-title {
    color: #FFFFFF;
    font-size: 42px;
    max-width: 880px;
    margin: 0px auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    line-height: 1.3;
}


/* =======================
   Kosten Boxen
======================= */

.kosten-boxes {
    margin-top: -165px;
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 0px,
        transparent 165px,
        #D9D9D9 165px,
        #D9D9D9 100%
    );
}

.kosten-boxes-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 0px;
}

.kosten-boxes .container {
    padding-left: 0px;
    padding-right: 0px;
}

.kosten-box {
    background: #E0A700;
    border-radius: 10px;
    padding: 30px 30px 40px 30px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.kosten-box h3 {
    margin: 0px 0px 10px 0px;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
}

.kosten-subtitle {
    margin: 0px 0px 30px 0px;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
}

.kosten-box p {
    margin: 0px 0px 35px 0px;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
}

.kosten-icon {
    width: 100px;
    height: 70px;
    margin: 0px auto 10px auto;
    background-image: url("../images/icons3.png");
    background-repeat: no-repeat;
}

.icon-kosten {
    background-position: 0px -120px;
}

.kosten-preis,
.kosten-anfrage {
    display: inline-block;
    background: #2A66A8;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    min-width: 202px;
    text-align: center;
}

.kosten-anfrage {
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.kosten-anfrage:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.kosten-anfrage:active {
    transform: scale(0.97);
}

.kosten-hinweis {
    margin-top: 40px;
	margin-left: 25px;
	margin-right: 25px;
    font-size: 15px;
    line-height: 1.35;
    color: #000000;
}


/* =======================
   1279px
======================= */

@media (max-width: 1279px) {

    .kosten-hero-inner {
        padding: 140px 25px 240px 25px;
    }

    .kosten-boxes .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .kosten-hero {
        min-height: 600px;
    }

    .kosten-hero-inner {
        padding: 140px 25px 230px 25px;
    }

    .kosten-hero-title {
        max-width: 820px;
        font-size: 36px;
        padding: 28px;
    }

    .kosten-boxes {
        margin-top: -165px;
        padding-bottom: 70px;
        background: linear-gradient(
            to bottom,
            transparent 0px,
            transparent 165px,
            #D9D9D9 165px,
            #D9D9D9 100%
        );
    }

    .kosten-boxes-inner {
        gap: 30px;
    }

    .kosten-boxes .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .kosten-box {
        padding: 35px 20px 35px 20px;
    }

    .kosten-box h3 {
        margin: 0px 0px 8px 0px;
        font-size: 20px;
    }

    .kosten-subtitle {
        margin: 0px 0px 26px 0px;
        font-size: 15px;
    }

    .kosten-box p {
        margin: 0px 0px 28px 0px;
        font-size: 15px;
    }

    .kosten-icon {
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: 6px;
    }

    .kosten-preis,
    .kosten-anfrage {
        font-size: 16px;
        padding: 13px 24px;
        min-width: 185px;
    }

    .kosten-hinweis {
        margin-top: 35px;
        font-size: 15px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .kosten-hero {
        background-image: url("../pictures/bg4-mobil.webp");
        background-position: center center;
        min-height: 260px;
    }

    .kosten-hero-inner {
        padding: 80px 20px 80px 20px;
    }

    .kosten-hero-title {
        max-width: 100%;
        font-size: 28px;
        padding: 20px;
    }

    .kosten-boxes {
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 50px;
        background: #D9D9D9;
    }

    .kosten-boxes .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .kosten-boxes-inner {
        flex-direction: column;
        gap: 30px;
    }

    .kosten-box {
        padding: 30px 20px 30px 20px;
    }

    .kosten-box h3 {
        margin: 0px 0px 8px 0px;
        font-size: 20px;
    }

    .kosten-subtitle {
        margin: 0px 0px 22px 0px;
        font-size: 15px;
    }

    .kosten-box p {
        margin: 0px 0px 25px 0px;
        font-size: 15px;
        line-height: 1.35;
    }

    .kosten-icon {
        width: 100px;
        height: 70px;
        margin: 0px auto 8px auto;
        background-image: url("../images/icons3.png");
        background-repeat: no-repeat;
    }

    .icon-kosten {
        background-position: 0px -120px;
    }

    .kosten-preis,
    .kosten-anfrage {
        font-size: 18px;
        padding: 14px 26px;
        min-width: 210px;
    }

    .kosten-hinweis {
        margin-top: 30px;
        font-size: 15px;
        line-height: 1.35;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .kosten-hero {
        min-height: 260px;
    }

    .kosten-hero-inner {
        padding: 90px 20px 65px 20px;
    }

    .kosten-hero-title {
        font-size: 25px;
        padding: 16px;
    }

    .kosten-boxes {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .kosten-box h3 {
        font-size: 20px;
    }

    .kosten-subtitle {
        font-size: 15px;
    }

    .kosten-box p {
        font-size: 15px;
    }

    .kosten-icon {
        width: 100px;
        height: 70px;
        margin: 0px auto 8px auto;
        background-image: url("../images/icons3.png");
        background-repeat: no-repeat;
    }

    .icon-kosten {
        background-position: 0px -120px;
    }

    .kosten-preis,
    .kosten-anfrage {
        font-size: 17px;
        padding: 12px 22px;
        min-width: 190px;
    }

    .kosten-hinweis {
        font-size: 15px;
    }
}




/* =======================
   Unternehmensberatung Intro
======================= */

.unternehmensberatung-intro {
    background: #FFFFFF;
    padding: 80px 0px;
}

.unternehmensberatung-intro-header {
    margin-bottom: 55px;
}

.unternehmensberatung-intro-headline {
    margin: 0px 0px 20px 0px;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
}

.unternehmensberatung-intro-subheadline {
    margin: 0px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: bold;
    color: #2A66A8;
}

.unternehmensberatung-intro-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.unternehmensberatung-intro-content {
    width: 700px;
    max-width: 100%;
}

.unternehmensberatung-intro-content p {
    margin: 0px 0px 24px 0px;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
}

.unternehmensberatung-intro-content p:last-child {
    margin-bottom: 0px;
}

.unternehmensberatung-intro-image {
    width: 490px;
    flex: 0 0 490px;
}

.unternehmensberatung-intro-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .unternehmensberatung-intro {
        padding: 70px 0px;
    }

    .unternehmensberatung-intro .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .unternehmensberatung-intro-header {
        margin-bottom: 50px;
    }

    .unternehmensberatung-intro-headline {
        margin: 0px 0px 16px 0px;
        font-size: 34px;
    }

    .unternehmensberatung-intro-subheadline {
        font-size: 22px;
    }

    .unternehmensberatung-intro-body {
        gap: 50px;
    }

    .unternehmensberatung-intro-content {
        width: 58%;
    }

    .unternehmensberatung-intro-content p {
        margin: 0px 0px 22px 0px;
        font-size: 15px;
    }

    .unternehmensberatung-intro-image {
        width: 42%;
        flex: 0 0 42%;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .unternehmensberatung-intro {
        padding: 60px 0px;
    }

    .unternehmensberatung-intro .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .unternehmensberatung-intro-header {
        margin-bottom: 35px;
    }

    .unternehmensberatung-intro-headline {
        margin: 0px 0px 10px 0px;
        font-size: 28px;
        line-height: 1.2;
    }

    .unternehmensberatung-intro-subheadline {
        font-size: 28px;
        line-height: 1.2;
    }

    .unternehmensberatung-intro-body {
        display: block;
    }

    .unternehmensberatung-intro-content {
        width: 100%;
    }

    .unternehmensberatung-intro-content p {
        margin: 0px 0px 20px 0px;
        font-size: 16px;
        line-height: 1.3;
    }

    .unternehmensberatung-intro-image {
        width: 100%;
        margin-top: 35px;
    }

    .unternehmensberatung-intro-image img {
        display: block;
        width: 100%;
        height: auto;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .unternehmensberatung-intro {
        padding: 50px 0px;
    }

    .unternehmensberatung-intro-headline {
        font-size: 25px;
    }

    .unternehmensberatung-intro-subheadline {
        font-size: 25px;
    }

    .unternehmensberatung-intro-content p {
        font-size: 15px;
    }
}




/* =======================
   Unternehmensberatung FAQ
======================= */

.unternehmensberatung-faq {
    background: #FFFFFF;
    padding: 40px 0px 80px 0px;
}

.unternehmensberatung-faq-inner {
    display: flex;
    flex-direction: column;
    gap: 45px;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .unternehmensberatung-faq {
        padding: 35px 0px 70px 0px;
    }

    .unternehmensberatung-faq .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .unternehmensberatung-faq-inner {
        gap: 40px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .unternehmensberatung-faq {
        padding: 0px 0px 60px 0px;
    }

    .unternehmensberatung-faq .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .unternehmensberatung-faq-inner {
        gap: 35px;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .unternehmensberatung-faq {
        padding: 0px 0px 50px 0px;
    }
}




/* =======================
   Aktuelles Hero
======================= */

.aktuelles-hero {
    background-image: url("../pictures/bg5.webp");
    background-size: cover;
    background-position: center bottom;
    position: relative;
    min-height: 625px;
    z-index: 1;
}

.aktuelles-hero-overlay {
    position: absolute;
    inset: 0;
}

.aktuelles-hero-inner {
    position: relative;
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    padding: 175px 0px 250px 0px;
}

.aktuelles-hero-title {
    color: #FFFFFF;
    font-size: 42px;
    max-width: 880px;
    margin: 0px auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    line-height: 1.3;
}


/* =======================
   Aktuelles Boxen
======================= */

.aktuelles-boxes {
    margin-top: -165px;
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 0px,
        transparent 165px,
        #D9D9D9 165px,
        #D9D9D9 100%
    );
}

.aktuelles-boxes-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 0px;
}

.aktuelles-boxes .container {
    padding-left: 0px;
    padding-right: 0px;
}

.aktuelles-box {
    background: #E0A700;
    border-radius: 10px;
    padding: 30px 30px 40px 30px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
	display: flex;
    flex-direction: column;
}

.aktuelles-box h3 {
    margin: 0px 0px 10px 0px;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
}

.aktuelles-box p {
    margin: 0px 0px 35px 0px;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
}

.aktuelles-icon {
    width: 100px;
    height: 70px;
    margin: 10px auto 20px auto;
    background-image: url("../images/icons3.png");
    background-repeat: no-repeat;
}

.icon-aktuelles {
    background-position: 0px -236px;
}

.aktuelles-anfrage {
    display: inline-block;
	margin-top: auto;
    background: #2A66A8;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    min-width: 202px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
	margin-top: auto;
    align-self: center;
}

.aktuelles-anfrage:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.aktuelles-anfrage:active {
    transform: scale(0.97);
}



/* =======================
   1279px
======================= */

@media (max-width: 1279px) {

    .aktuelles-hero-inner {
        padding: 140px 25px 240px 25px;
    }

    .aktuelles-boxes .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .aktuelles-hero {
        min-height: 600px;
    }

    .aktuelles-hero-inner {
        padding: 140px 25px 230px 25px;
    }

    .aktuelles-hero-title {
        max-width: 820px;
        font-size: 36px;
        padding: 28px;
    }

    .aktuelles-boxes {
        margin-top: -165px;
        padding-bottom: 70px;
        background: linear-gradient(
            to bottom,
            transparent 0px,
            transparent 165px,
            #D9D9D9 165px,
            #D9D9D9 100%
        );
    }

    .aktuelles-boxes-inner {
        gap: 30px;
    }

    .aktuelles-boxes .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .aktuelles-box {
        padding: 35px 20px 35px 20px;
    }

    .aktuelles-box h3 {
        margin: 0px 0px 8px 0px;
        font-size: 20px;
    }

    .aktuelles-box p {
        margin: 0px 0px 28px 0px;
        font-size: 15px;
    }

    .aktuelles-icon {
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: 6px;
    }

    .aktuelles-anfrage {
        font-size: 16px;
        padding: 13px 24px;
        min-width: 185px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .aktuelles-hero {
        background-image: url("../pictures/bg5-mobil.webp");
        background-position: center center;
        min-height: 260px;
    }

    .aktuelles-hero-inner {
        padding: 80px 20px 80px 20px;
    }

    .aktuelles-hero-title {
        max-width: 100%;
        font-size: 28px;
        padding: 20px;
    }

    .aktuelles-boxes {
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 50px;
        background: #D9D9D9;
    }

    .aktuelles-boxes .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .aktuelles-boxes-inner {
        flex-direction: column;
        gap: 30px;
    }

    .aktuelles-box {
        padding: 30px 20px 30px 20px;
    }

    .aktuelles-box h3 {
        margin: 0px 0px 8px 0px;
        font-size: 20px;
    }

    .aktuelles-box p {
        margin: 0px 0px 25px 0px;
        font-size: 15px;
        line-height: 1.35;
    }

    .aktuelles-icon {
        width: 100px;
        height: 70px;
        margin: 20px auto 20px auto;
        background-image: url("../images/icons3.png");
        background-repeat: no-repeat;
    }

    .icon-aktuelles {
        background-position: 0px -236px;
    }

    .aktuelles-anfrage {
        font-size: 18px;
        padding: 14px 26px;
        min-width: 210px;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .aktuelles-hero {
        min-height: 260px;
    }

    .aktuelles-hero-inner {
        padding: 90px 20px 65px 20px;
    }

    .aktuelles-hero-title {
        font-size: 25px;
        padding: 16px;
    }

    .aktuelles-boxes {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .aktuelles-box h3 {
        font-size: 20px;
    }

    .aktuelles-box p {
        font-size: 15px;
    }

    .aktuelles-icon {
        width: 100px;
        height: 70px;
        margin: 20px auto 20px auto;
        background-image: url("../images/icons3.png");
        background-repeat: no-repeat;
    }

    .icon-aktuelles {
        background-position: 0px -236px;
    }

    .aktuelles-anfrage {
        font-size: 17px;
        padding: 12px 22px;
        min-width: 190px;
    }
}





/* =======================
   Formular
======================= */

.formular {
    background: #FFFFFF;
    padding: 80px 0px 80px 0px;
}

.formular-header {
    margin-bottom: 65px;
}

.formular-headline {
    margin: 0px 0px 20px 0px;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
}

.formular-subheadline {
    margin: 0px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: bold;
    color: #2A66A8;
}

.formular-intro {
    max-width: 1120px;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
	margin-bottom: 55px;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .formular {
        padding: 70px 0px 70px 0px;
    }

    .formular .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .formular-header {
        margin-bottom: 55px;
    }

    .formular-headline {
        margin: 0px 0px 16px 0px;
        font-size: 34px;
    }

    .formular-subheadline {
        font-size: 22px;
    }

    .formular-intro {
        font-size: 15px;
    }
}


/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .formular {
        padding: 60px 0px 60px 0px;
    }

    .formular .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .formular-header {
        margin-bottom: 35px;
    }

    .formular-headline {
        margin: 0px 0px 10px 0px;
        font-size: 28px;
        line-height: 1.2;
    }

    .formular-subheadline {
        font-size: 28px;
        line-height: 1.2;
    }

    .formular-intro {
        font-size: 16px;
        line-height: 1.3;
    }
}


/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .formular {
        padding: 50px 0px 50px 0px;
    }

    .formular-headline {
        font-size: 25px;
    }

    .formular-subheadline {
        font-size: 25px;
    }

    .formular-intro {
        font-size: 15px;
    }
}





/* =======================
   FAQ Button
======================= */

.faq-button {
    display: inline-block;
	margin-top: auto;
    background: #2A66A8;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    min-width: 202px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
	margin-top: auto;
    align-self: center;
}

.faq-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.faq-button:active {
    transform: scale(0.97);
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

    .faq-button {
        font-size: 16px;
        padding: 13px 24px;
        min-width: 185px;
    }
}

/* =======================
   Mobile <=1023
======================= */

@media (max-width: 1023px) {

    .faq-button {
        font-size: 18px;
        padding: 14px 26px;
        min-width: 210px;
    }
}

/* =======================
   Mobile <=560
======================= */

@media (max-width: 560px) {

    .faq-button {
        font-size: 17px;
        padding: 12px 22px;
        min-width: 190px;
    }
}
