/* =========================================================
   RESET / BASIS
========================================================= */

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

body {
    font-family: Arial, sans-serif;
}





/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 2rem;
    background: #111;
    position: relative;
}

.logo img {
    height: 55px;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    margin-left: auto;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transition: 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f4c400;
    border-bottom: 3px solid #f4c400;
}





/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: 0.25s ease;
}

.social-icons a img:hover {
    transform: scale(1.08);
}





/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #111;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 220px;
    margin-bottom: 1rem;
}

.footer-logo p,
.footer-box p {
    color: #ccc;
    line-height: 1.6;
}

.footer-box h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-box a {
    display: block;
    width: fit-content;
    margin-bottom: 0.6rem;
    color: #ddd;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: 0.25s;
}

.footer-box a:hover,
.footer-box a.active {
    color: #f4c400;
    border-bottom: 2px solid #f4c400;
}

.footer-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-box img {
    width: 30px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: #777;
}





/* =========================================================
   BUTTON GLOBAL
========================================================= */

.btn {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.9rem 1.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
}





/* =========================================================
   HERO SECTION
========================================================= */

.hero-wrapper {
    background: url('../images/hero.jpg') center/cover no-repeat;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.45);
    color: white;
    text-align: center;
    padding: 3rem 2rem 6rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-cards {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
}

.feature-box {
    background: rgba(30,30,30,0.35);
    backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    border-radius: 14px;
    color: white;
}

.feature-box img {
    width: 40px;
    margin-bottom: 1rem;
}

.feature-box h3 {
    margin-bottom: 0.6rem;
}

.feature-box p {
    line-height: 1.6;
}

.hero-white {
    color: #fff;
}

.hero-yellow {
    color: #f4c400;
}





/* =========================================================
   KLASSEN SECTION
========================================================= */

.classes {
    padding: 6rem 2rem 5rem;
    text-align: center;
    background: #ffffff;
}

.classes-header {
    max-width: 900px;
    margin: 0 auto 3.5rem auto;
}

.classes-header h2 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.classes-header p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.class-box {
    background: #f5f5f5;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    padding: 2rem 1rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.25s;
}

.class-box:hover {
    transform: translateY(-5px);
}

.class-box img {
    width: 110px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.class-box h3 {
    font-size: 1.1rem;
    margin-top: auto;
    color: #111;
}





/* =========================================================
   FUHRPARK SECTION
========================================================= */

.fleet {
    padding: 6rem 2rem;
    background: #111;
    text-align: center;
}

.fleet-header {
    max-width: 900px;
    margin: 0 auto 3.5rem auto;
}

.fleet-header h2 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.fleet-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.fleet-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
}

.fleet-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.fleet-box:hover img {
    transform: scale(1.05);
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    color: #f4c400;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.25s ease;
}

.fleet-box:hover .fleet-overlay {
    opacity: 1;
}

.fleet-button {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}





/* =========================================================
   FERIEN INTENSIV SEMINAR BANNER
========================================================= */

.seminar-banner {
    background: url("../images/bgr_ferien_intensiv_seminar.jpg") center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.seminar-overlay {
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(4px);
    padding: 3rem 2rem;
    border-radius: 14px;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.seminar-title {
    font-size: 2.4rem;
    margin-bottom: 1.4rem;
    line-height: 1.35;
    font-weight: 800;
}

.seminar-title .gelb {
    display: inline-block;
    color: #f4c400;
    background: rgba(0,0,0,0.88);
    padding: 0.4rem 0.8rem;
    font-weight: 800;
    transform: skew(-8deg);
    border-radius: 6px;
}

.seminar-title .weiss {
    display: inline-block;
    color: #fff;
    background: rgba(0,0,0,0.88);
    padding: 0.4rem 0.8rem;
    margin-top: 0.4rem;
    font-weight: 800;
    transform: skew(-8deg);
    border-radius: 6px;
}

.seminar-date {
    color: #8b5a2b;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}

.seminar-text {
    color: #111;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.seminar-btn {
    display: inline-block;
}





/* =========================================================
   TEAM SECTION
========================================================= */

.team {
    background: #111;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header h2 {
    font-size: 2.6rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 3rem;
}

.team-header span {
    display: block;
    font-size: 1.2rem;
    color: #ddd;
    margin-top: 1rem;
    font-weight: 400;
}

.team-main-image {
    margin-bottom: 3rem;
}

.team-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 14px;
    background: #111;
}

.team-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-slider::before,
.team-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
}

.team-slider::before {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.team-slider::after {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

.team-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollTeam 30s linear infinite;
}

.team-track img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.team-track img:hover {
    transform: scale(1.08);
}

@keyframes scrollTeam {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}





/* =========================================================
   STEPS STARTS SECTION
========================================================= */

.steps-starts {
    background: #111;
    padding: 6rem 2rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-title {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-title {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.steps-image {
    margin-bottom: 3rem;
}

.steps-image img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.steps-button {
    text-align: center;
}

.steps-button .btn {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.steps-button .btn:hover {
    transform: translateY(-2px);
}





/* =========================================================
   FAQ STARTS SECTION
========================================================= */

.faq-starts {
    background: #231f20;
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.faq-item {
    background: #111;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #f4c400;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-arrow {
    color: #fff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 1rem;
}

.faq-answer,
.faq-answer p {
    color: #fff;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}





/* =========================================================
   REVIEWS STARTS SECTION
========================================================= */

.reviews-starts {
    background: #231f20;
    padding: 6rem 2rem;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    color: #fff;
    font-size: 2.8rem;
    line-height: 1.4;
}

.reviews-header span {
    display: inline-block;
    margin-top: 1rem;
    color: #111;
    background: #fff;
    padding: 0.6rem 1.4rem;
    font-weight: 800;
    transform: skew(-8deg);
    border-radius: 6px;
}

.reviews-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-images img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.review-box {
    background: #111;
    border: 1px solid #444;
    border-radius: 14px;
    padding: 1.4rem;
    color: white;
}

.review-top {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: start;
}

.review-logo img {
    width: 40px;
}

.review-head img {
    width: 90px;
    margin-bottom: 0.6rem;
}

.review-head h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.review-head p {
    font-size: 0.85rem;
    color: #ccc;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
}

.review-video-thumb {
    position: relative;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
}

.review-video-thumb img {
    display: block;
    width: 100%;
}

.review-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    background: #f4c400;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.review-play-icon::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 18px;
    width: 0;
    height: 0;
    border-left: 20px solid #111;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.review-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-video-overlay.active {
    display: flex;
}

.review-video-modal {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.review-video-modal video {
    width: 100%;
    max-height: 80vh;
    background: #000;
    border-radius: 12px;
}

.review-video-close {
    position: absolute;
    right: -10px;
    top: -45px;
    background: #f4c400;
    color: #111;
    border: none;
    font-size: 32px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
}





/* =========================================================
   AKTION BANNER SECTION
========================================================= */

.aktion-banner {
    position: relative;
    background:
        linear-gradient(rgba(244,196,0,0.28), rgba(244,196,0,0.28)),
        url('../images/bgr_aktion_1.png') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.aktion-overlay {
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(4px);
    padding: 3rem 2rem;
    border-radius: 14px;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.aktion-overlay h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.aktion-black {
    color: #111;
    font-weight: 800;
}

.aktion-yellow {
    display: inline-block;
    color: #f4c400;
    background: rgba(0,0,0,0.85);
    padding: 0.5rem 1rem;
    font-weight: 800;
    transform: skew(-8deg);
    border-radius: 6px;
}





/* =========================================================
   PARTNER SECTION
========================================================= */

.partner {
    background: #111;
    padding: 6rem 2rem;
    overflow: hidden;
}

.partner-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partner-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partner-header h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.partner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-slider::before,
.partner-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

.partner-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollPartner 40s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-track img {
    width: 150px;
    object-fit: cover;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
}

@keyframes scrollPartner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}





/* =========================================================
   FAQ STARTS SECTION
========================================================= */

.faq-starts {
    background: #231f20;
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.faq-item {
    background: #111;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #f4c400;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-arrow {
    color: #fff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 1rem;
}

.faq-answer p {
    color: #ddd;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}





/* =========================================================
   NOWAIT BANNER
========================================================= */

.nowait-banner {
    background: url("../images/bgr_banner_whywait.jpg") center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nowait-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
}

.nowait-overlay {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
    z-index: 2;
}

.nowait-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.nowait-title .gelb {
    color: #f4c400;
    font-weight: 800;
}

.nowait-title .weiss {
    color: #fff;
    font-weight: 800;
}

.nowait-btn {
    display: inline-block;
}





/* =========================================================
   CLASS DETAILS SECTION
========================================================= */

.class-details {
    background: #231f20;
    padding: 6rem 2rem;
    color: white;
}

.class-container {
    max-width: 1300px;
    margin: 0 auto;
}

.class-header {
    text-align: center;
    margin-bottom: 3rem;
}

.class-header h2 {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.class-header p {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.class-card {
    background: #352f30;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.class-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.class-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.class-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.class-images img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.class-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #fff;
}

.class-card .faq-item {
    background: #231f20;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f4c400;
}

.class-card .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.class-card .faq-arrow {
    color: #fff;
    transition: transform 0.3s ease;
}

.class-card .faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.class-card .faq-answer {
    display: none;
    margin-top: 1rem;
}

.class-card .faq-answer p {
    color: #ddd;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.class-card .faq-item.active .faq-answer {
    display: block;
}

.class-btn {
    margin-top: 2rem;
    text-align: center;
}

.class-btn .btn {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.9rem 1.8rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.25s;
}

.class-btn .btn:hover {
    transform: translateY(-2px);
}





/* =========================================================
   FINANZIERUNG BANNER
========================================================= */

.finanz-banner {
    background:
        linear-gradient(rgba(244,196,0,0.30), rgba(244,196,0,0.30)),
        url("../images/bgr_banner_finanzierung_1.jpg") center/cover no-repeat;
}





/* =========================================================
   WHY FINANZIERUNG
========================================================= */

.why-finanzierung {
    background: #231f20;
    padding: 6rem 2rem;
}

.why-finanzierung-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-finanzierung-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-finanzierung-header h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.why-finanzierung-header p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.why-finanzierung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-finanzierung-box {
    background: #352f30;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    text-align: center;
}

.why-finanzierung-box img {
    width: 36px;
    margin-bottom: 1.5rem;
}

.why-finanzierung-box h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.yellow-line {
    width: 140px;
    height: 4px;
    background: #f4c400;
    border-radius: 4px;
    margin: 0 auto;
}





/* =========================================================
   FINANZIERUNGSMÖGLICHKEITEN
========================================================= */

.finanzierungsmoeglichkeiten {
    background: #231f20;
    padding: 6rem 2rem;
}

.finanzierungsmoeglichkeiten-container {
    max-width: 1300px;
    margin: 0 auto;
}

.finanzierungsmoeglichkeiten-header {
    text-align: center;
    margin-bottom: 4rem;
}

.finanzierungsmoeglichkeiten-header h2 span {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.finanzierungsmoeglichkeiten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.finanzierungsmoeglichkeiten-box {
    background: #352f30;
    border-radius: 14px;
    padding: 2rem;
    color: #fff;
}

.finanzierungsmoeglichkeiten-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.finanzierung-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: block;
}

.finanzierungsmoeglichkeiten-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.finanzierungsmoeglichkeiten-box li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.finanzierungsmoeglichkeiten-box li img {
    width: 22px;
    min-width: 22px;
    margin-top: 0.15rem;
}





/* =========================================================
   STEPS FINANZIERUNG
========================================================= */

.steps-finanzierung {
    background: #111;
    padding: 6rem 2rem;
}

.steps-finanzierung-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-finanzierung-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-finanzierung-header h2 span {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.steps-finanzierung-image {
    margin-bottom: 3rem;
}

.steps-finanzierung-image img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.steps-finanzierung-button {
    text-align: center;
}

.steps-finanzierung-button .btn {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.steps-finanzierung-button .btn:hover {
    transform: translateY(-2px);
}





/* =========================================================
   REVIEW FINANZIERUNG
========================================================= */

.review-finanzierung {
    background: #231f20;
    padding: 6rem 2rem;
}

.review-finanzierung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}





/* =========================================================
   FRAGEN FINANZIERUNG
========================================================= */

.fragen-finanzierung {
    background: #111;
    padding: 6rem 2rem;
}

.fragen-finanzierung .faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.fragen-finanzierung .faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fragen-finanzierung .faq-header h2 {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.fragen-finanzierung .faq-item {
    background: #231f20;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.2rem;
}

.fragen-finanzierung .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.fragen-finanzierung .faq-arrow {
    transition: transform 0.3s ease;
}

.fragen-finanzierung .faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.fragen-finanzierung .faq-answer {
    display: none;
    margin-top: 1rem;
}

.fragen-finanzierung .faq-answer p {
    color: #ddd;
    line-height: 1.8;
    font-size: 1rem;
}

.fragen-finanzierung .faq-item.active .faq-answer {
    display: block;
}





/* =========================================================
   ZUSÄTZLICHE KURSE
========================================================= */

.zkurse {
    background: #231f20;
    padding: 6rem 2rem;
}

.zkurse-container {
    max-width: 1400px;
    margin: 0 auto;
}

.zkurse-header {
    text-align: center;
    margin-bottom: 4rem;
}

.zkurse-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.4;
}

.zkurse-header .white {
    color: #fff;
}

.zkurse-header .yellow {
    color: #f4c400;
}

.zkurse-header p {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.zkurse-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.zkurse-box img {
    width: 100%;
    border-radius: 14px;
    display: block;
    margin-bottom: 1rem;
}

.zkurse-link {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.3rem;
    transition: 0.3s ease;
}

.zkurse-link:hover,
.zkurse-link.active {
    color: #f4c400;
    border-color: #f4c400;
}

.zkurse-content {
    background: #352f30;
    border-radius: 16px;
    padding: 3rem;
}

.zkurse-text {
    display: none;
}

.zkurse-text.active {
    display: block;
}

.zkurse-text h3 {
    color: #f4c400;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.zkurse-text h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.zkurse-text p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.zkurse-text ul {
    padding-left: 1.3rem;
}

.zkurse-text li {
    color: #fff;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.zkurse-info-btn {
    display: inline-block;
    margin-top: 2rem;
}





/* =========================================================
   TERMINE
========================================================= */

.termine {
    background: #231f20;
    padding: 6rem 2rem;
}

.termine-container {
    max-width: 1100px;
    margin: 0 auto;
}

.termine-header {
    text-align: center;
    margin-bottom: 4rem;
}

.termine-header h2 span {
    display: inline-block;
    background: #f4c400;
    color: #111;
    padding: 0.5rem 1.2rem;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: 800;
}

.termine-header p {
    margin-top: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
}

.termine-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.termin-box {
    background: #352f30;
    border-radius: 14px;
    padding: 1.6rem 2rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 2rem;
}

.termin-datum {
    color: #f4c400;
    font-size: 1.1rem;
    font-weight: 800;
}

.termin-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}





/* =========================================================
   BANNER SEMINAR ANGEBOT
========================================================= */

.banner-seminar-angebot {
    background: url("../images/bgr_siminar_angebot.jpg") center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.banner-seminar-angebot .seminar-overlay {
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(4px);
    padding: 3rem 2rem;
    border-radius: 14px;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.banner-seminar-angebot .seminar-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.35;
    font-weight: 800;
}

.banner-seminar-angebot .seminar-title .gelb {
    display: inline-block;
    color: #f4c400;
    background: rgba(0,0,0,0.88);
    padding: 0.5rem 1rem;
    font-weight: 800;
    transform: skew(-8deg);
    border-radius: 6px;
}

.banner-seminar-angebot .seminar-text {
    color: #111;
    margin-bottom: 1.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.banner-seminar-angebot .seminar-btn {
    display: inline-block;
}





/* =========================================================
   LEITBILD
========================================================= */

.leitbild {
    background: #231f20;
    padding: 6rem 2rem;
}

.leitbild-container {
    max-width: 1100px;
    margin: 0 auto;
}

.leitbild h1 {
    color: #f4c400;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.leitbild h2 {
    color: #f4c400;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 4rem;
}

.leitbild-block {
    margin-bottom: 3rem;
}

.leitbild h3 {
    color: #f4c400;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.leitbild p,
.leitbild li {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.9;
}

.leitbild ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.leitbild li {
    margin-bottom: 0.7rem;
}





/* =========================================================
   IMPRESSUM
========================================================= */

.impressum {
    background: #231f20;
    padding: 6rem 2rem;
}

.impressum-container {
    max-width: 1100px;
    margin: 0 auto;
}

.impressum-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impressum-header h1 {
    color: #f4c400;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.impressum-header p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.impressum-box,
.impressum-block {
    background: #352f30;
    border-radius: 14px;
    padding: 2rem;
    color: #fff;
}

.impressum-block {
    margin-bottom: 2rem;
}

.impressum-center {
    text-align: center;
    margin-bottom: 2rem;
}

.impressum h2 {
    color: #f4c400;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.impressum p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.impressum strong {
    color: #f4c400;
}





/* =========================================================
   DATENSCHUTZ
========================================================= */

.datenschutz {
    background: #231f20;
    padding: 6rem 2rem;
}

.datenschutz-container {
    max-width: 1100px;
    margin: 0 auto;
}

.datenschutz-header {
    text-align: center;
    margin-bottom: 4rem;
}

.datenschutz-header h1 {
    color: #f4c400;
    font-size: 3rem;
    font-weight: 900;
}

.datenschutz-block {
    background: #352f30;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.datenschutz h2 {
    color: #f4c400;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1.4rem;
}

.datenschutz h3 {
    color: #f4c400;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 1.6rem 0 0.8rem;
}

.datenschutz p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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





/* =========================================================
   KONTAKT OVERLAY
========================================================= */

.kontakt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.kontakt-overlay.active {
    display: flex;
}

.kontakt-overlay-box {
    position: relative;
    background: #231f20;
    border-radius: 18px;
    max-width: 1000px;
    width: 100%;
    padding: 3rem;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.kontakt-overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f4c400;
    color: #111;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    font-weight: 800;
}

.kontakt-overlay-box h2 {
    color: #f4c400;
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.kontakt-overlay-subline {
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.kontakt-overlay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.kontakt-overlay-card {
    background: #352f30;
    border-radius: 14px;
    padding: 2rem;
}

.kontakt-overlay-card h3 {
    color: #f4c400;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.kontakt-overlay-card p,
.kontakt-overlay-bottom p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.kontakt-overlay-card strong,
.kontakt-overlay-bottom strong {
    color: #f4c400;
}

.kontakt-overlay a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.kontakt-overlay a:hover {
    color: #f4c400;
}

.kontakt-overlay-bottom {
    margin-top: 2rem;
    text-align: center;
}
