/* =========================================
   GRUNDEINSTELLUNGEN
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    background-color: white;
    color: #222;
}


/* =========================================
   KOPFBEREICH / LOGO
   ========================================= */

header {
    width: 100%;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
}

.kopfbereich {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 15px 0 15px 230px;
}

.logo {
    display: block;

    width: 360px;
    max-width: 100%;

    height: auto;
}


/* =========================================
   NAVIGATION
   ========================================= */

nav {
    width: 100%;

    background-color: #1E73BE;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 45px;

    padding: 12px 20px;
}

nav a {
    color: white;

    text-decoration: none;

    font-size: 17px;
    font-weight: bold;

    padding: 6px 10px;

    transition: 0.2s;
}

nav a:hover {
    color: #d9eaff;
    text-decoration: underline;
}


/* =========================================
   HAUPTBEREICH
   ========================================= */

main {
    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================
   STARTBEREICH
   ========================================= */

.startbereich {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 30px 20px;

    text-align: center;
}

.startbereich h1 {
    margin: 0 auto 15px auto;

    font-size: 38px;
    font-weight: 800;

    line-height: 1.2;

    text-align: center;

    color: #222;
}

.startbereich p {
    max-width: 900px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.45;

    text-align: center;

    color: #555;
}


/* =========================================
   STARTSEITEN-BUTTONS
   ========================================= */

.start-buttons {
    margin-top: 24px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 18px;
}

.start-button {
    display: inline-block;

    min-width: 180px;

    padding: 12px 24px;

    background-color: #1E73BE;

    color: white;

    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    border-radius: 6px;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);

    transition:
        background-color 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.start-button:hover {
    background-color: #155b99;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}


/* =========================================
   ALLGEMEINE ÜBERSCHRIFTEN
   ========================================= */

h2 {
    margin-top: 0;

    font-size: 28px;

    text-align: center;

    color: #222;
}


/* =========================================
   FÄCHER-BEREICH
   ========================================= */

.faecher-bereich {
    width: 100%;

    padding: 30px 30px 40px 30px;

    background-color: #f7f9fb;
}

.faecher-bereich h2 {
    font-size: 27px;

    margin-bottom: 0;
}

.faecher-container {
    max-width: 1050px;

    margin: 22px auto 0 auto;

    display: flex;

    justify-content: center;

    gap: 22px;
}


/* =========================================
   FÄCHER-KARTEN
   ========================================= */

.fach-karte {
    width: 30%;

    max-width: 300px;
    min-height: 290px;

    padding: 20px 18px;

    background-color: white;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
    align-items: center;

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.fach-karte:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.fach-symbol {
    width: 60px;
    height: 60px;

    margin-bottom: 12px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background-color: #e7f1fb;

    color: #1E73BE;

    font-size: 34px;
    font-weight: bold;
}

.fach-karte h3 {
    margin: 0 0 10px 0;

    font-size: 21px;

    color: #222;
}

.fach-karte p {
    margin: 0 0 16px 0;

    font-size: 15px;

    line-height: 1.45;

    color: #555;

    flex-grow: 1;
}

.mehr-button {
    display: inline-block;

    padding: 9px 18px;

    background-color: #1E73BE;

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    border-radius: 6px;

    transition:
        background-color 0.2s,
        transform 0.2s;
}

.mehr-button:hover {
    background-color: #155b99;

    transform: translateY(-2px);
}


/* =========================================
   WARUM DERTUTOR
   ========================================= */

.warum-bereich {
    width: 100%;

    padding: 45px 30px;

    background-color: white;
}

.warum-bereich h2 {
    font-size: 27px;

    margin-bottom: 0;
}

.vorteile-container {
    max-width: 1000px;

    margin: 30px auto 0 auto;

    display: flex;

    justify-content: center;

    gap: 45px;
}

.vorteil {
    flex: 1;

    max-width: 280px;

    text-align: center;
}

.vorteil-symbol {
    width: 50px;
    height: 50px;

    margin: 0 auto 14px auto;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background-color: #1E73BE;

    color: white;

    font-size: 24px;
    font-weight: bold;
}

.vorteil h3 {
    margin: 0 0 10px 0;

    font-size: 20px;
}

.vorteil p {
    margin: 0;

    font-size: 15px;

    line-height: 1.45;

    color: #555;
}


/* =========================================
   KONTAKT-BEREICH STARTSEITE
   ========================================= */

.kontakt-bereich {
    width: 100%;

    padding: 40px 20px;

    background-color: #eef5fb;

    text-align: center;
}

.kontakt-bereich h2 {
    margin-bottom: 12px;

    font-size: 27px;
}

.kontakt-bereich p {
    max-width: 650px;

    margin: 0 auto 22px auto;

    font-size: 16px;

    line-height: 1.5;

    color: #555;
}

.kontakt-button {
    display: inline-block;

    padding: 12px 24px;

    background-color: #1E73BE;

    color: white;

    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    border-radius: 6px;

    transition:
        background-color 0.2s,
        transform 0.2s;
}

.kontakt-button:hover {
    background-color: #155b99;

    transform: translateY(-2px);
}


/* =========================================
   KONTAKTSEITE
   ========================================= */

.kontaktseite {
    width: 100%;

    padding: 45px 25px 60px 25px;

    background-color: #f7f9fb;
}

.kontakt-einleitung {
    max-width: 900px;

    margin: 0 auto 35px auto;

    text-align: center;
}

.kontakt-einleitung h1 {
    margin: 0 0 15px 0;

    font-size: 38px;
    font-weight: 800;

    color: #222;
}

.kontakt-einleitung p {
    max-width: 700px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.5;

    color: #555;
}

.kontakt-container {
    max-width: 1050px;

    margin: 0 auto;

    display: flex;

    align-items: flex-start;

    gap: 30px;
}


/* =========================================
   KONTAKTFORMULAR
   ========================================= */

.kontakt-formular-box {
    flex: 1.6;

    padding: 30px;

    background-color: white;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.formular-gruppe {
    margin-bottom: 20px;
}

.formular-gruppe label {
    display: block;

    margin-bottom: 7px;

    font-size: 15px;

    font-weight: bold;

    color: #333;
}

.formular-gruppe input,
.formular-gruppe select,
.formular-gruppe textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #ccd3da;

    border-radius: 6px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    color: #222;

    background-color: white;

    outline: none;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.formular-gruppe textarea {
    resize: vertical;

    min-height: 130px;
}

.formular-gruppe input:focus,
.formular-gruppe select:focus,
.formular-gruppe textarea:focus {
    border-color: #1E73BE;

    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.12);
}

.formular-button {
    width: 100%;

    border: none;

    padding: 13px 24px;

    background-color: #1E73BE;

    color: white;

    font-size: 16px;

    font-weight: bold;

    border-radius: 6px;

    cursor: pointer;

    transition:
        background-color 0.2s,
        transform 0.2s;
}

.formular-button:hover {
    background-color: #155b99;

    transform: translateY(-2px);
}


/* =========================================
   KONTAKT INFOBOX
   ========================================= */

.kontakt-info {
    flex: 1;

    padding: 28px;

    background-color: #eef5fb;

    border-radius: 12px;

    border-left: 4px solid #1E73BE;
}

.kontakt-info h2 {
    margin-bottom: 25px;

    font-size: 25px;

    text-align: left;
}

.kontakt-schritt {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 25px;
}

.kontakt-schritt span {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background-color: #1E73BE;

    color: white;

    font-weight: bold;
}

.kontakt-schritt h3 {
    margin: 0 0 5px 0;

    font-size: 17px;

    color: #222;
}

.kontakt-schritt p {
    margin: 0;

    font-size: 15px;

    line-height: 1.45;

    color: #555;
}

.unverbindlich {
    margin-top: 10px;

    padding: 12px 15px;

    background-color: white;

    border-radius: 6px;

    color: #1E73BE;

    font-size: 15px;

    font-weight: bold;

    text-align: center;
}


/* =========================================
   VIELEN-DANK-SEITE
   ========================================= */

.danke-bereich {
    width: 100%;

    min-height: 500px;

    padding: 70px 20px;

    display: flex;

    justify-content: center;
    align-items: flex-start;

    background-color: #f7f9fb;
}

.danke-box {
    width: 100%;
    max-width: 650px;

    padding: 50px 40px;

    background-color: white;

    text-align: center;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.danke-symbol {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px auto;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: #1E73BE;

    color: white;

    border-radius: 50%;

    font-size: 38px;
    font-weight: bold;
}

.danke-box h1 {
    margin: 0 0 18px 0;

    font-size: 32px;

    color: #222;
}

.danke-box p {
    max-width: 520px;

    margin: 0 auto 30px auto;

    font-size: 18px;

    line-height: 1.6;

    color: #555;
}

.danke-button {
    display: inline-block;

    padding: 12px 25px;

    background-color: #1E73BE;

    color: white;

    text-decoration: none;

    font-size: 16px;

    font-weight: bold;

    border-radius: 6px;

    transition:
        background-color 0.2s,
        transform 0.2s;
}

.danke-button:hover {
    background-color: #155b99;

    transform: translateY(-2px);
}


/* =========================================
   ERSTGESPRÄCH-SEITE
   ========================================= */

.erstgespraech-seite {
    width: 100%;

    padding: 45px 25px 60px 25px;

    background-color: #f7f9fb;
}


/* =========================================
   ERSTGESPRÄCH EINLEITUNG
   ========================================= */

.erstgespraech-einleitung {
    max-width: 900px;

    margin: 0 auto 35px auto;

    text-align: center;
}

.erstgespraech-label {
    display: inline-block;

    margin-bottom: 15px;

    padding: 7px 14px;

    background-color: #e7f1fb;

    color: #1E73BE;

    font-size: 14px;
    font-weight: bold;

    border-radius: 20px;
}

.erstgespraech-einleitung h1 {
    margin: 0 0 15px 0;

    font-size: 38px;
    font-weight: 800;

    line-height: 1.2;

    color: #222;
}

.erstgespraech-einleitung p {
    max-width: 750px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.55;

    color: #555;
}


/* =========================================
   ERSTGESPRÄCH VORTEILE
   ========================================= */

.erstgespraech-vorteile {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto 50px auto;

    display: flex;

    justify-content: center;

    gap: 20px;
}

.erstgespraech-vorteil {
    flex: 1;

    padding: 20px;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    background-color: white;

    border-radius: 10px;

    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}

.erstgespraech-vorteil-symbol {
    width: 35px;
    height: 35px;

    min-width: 35px;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: #1E73BE;

    color: white;

    border-radius: 50%;

    font-size: 17px;
    font-weight: bold;
}

.erstgespraech-vorteil h3 {
    margin: 0 0 5px 0;

    font-size: 17px;

    color: #222;
}

.erstgespraech-vorteil p {
    margin: 0;

    font-size: 14px;

    line-height: 1.45;

    color: #555;
}


/* =========================================
   ABLAUF ERSTGESPRÄCH
   ========================================= */

.erstgespraech-ablauf {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto 50px auto;
}

.erstgespraech-ablauf h2 {
    margin-bottom: 28px;

    font-size: 27px;
}

.ablauf-container {
    display: flex;

    justify-content: center;

    gap: 25px;
}

.ablauf-schritt {
    flex: 1;

    max-width: 320px;

    padding: 25px 20px;

    background-color: white;

    text-align: center;

    border-radius: 10px;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.ablauf-nummer {
    width: 45px;
    height: 45px;

    margin: 0 auto 15px auto;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: #1E73BE;

    color: white;

    border-radius: 50%;

    font-size: 20px;
    font-weight: bold;
}

.ablauf-schritt h3 {
    margin: 0 0 10px 0;

    font-size: 19px;
}

.ablauf-schritt p {
    margin: 0;

    font-size: 15px;

    line-height: 1.5;

    color: #555;
}


/* =========================================
   CALENDLY-BEREICH
   ========================================= */

.calendly-bereich {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto 50px auto;

    padding: 30px;

    background-color: white;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.calendly-kopf {
    max-width: 750px;

    margin: 0 auto 20px auto;

    text-align: center;
}

.calendly-kopf .buchung-schritt {
    display: inline-block;

    margin-bottom: 8px;

    color: #1E73BE;

    font-size: 14px;
    font-weight: bold;
}

.calendly-kopf h2 {
    margin: 0 0 10px 0;

    font-size: 27px;

    text-align: center;

    color: #222;
}

.calendly-kopf p {
    margin: 0;

    font-size: 15px;

    line-height: 1.5;

    color: #555;
}


/* =========================================
   CALENDLY WIDGET
   ========================================= */

.calendly-inline-widget {
    width: 100%;

    min-width: 320px;

    margin: 0 auto;

    border-radius: 10px;

    overflow: hidden;
}


/* =========================================
   NACH DER BUCHUNG
   ========================================= */

.danach-bereich {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto 50px auto;

    padding: 35px 35px 15px 35px;

    background-color: #eef5fb;

    border-radius: 12px;
}

.danach-bereich h2 {
    margin-bottom: 30px;

    font-size: 27px;
}

.danach-container {
    display: flex;

    justify-content: center;

    gap: 30px;
}

.danach-punkt {
    flex: 1;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 25px;
}

.danach-symbol {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: #1E73BE;

    color: white;

    border-radius: 50%;

    font-size: 16px;
    font-weight: bold;
}

.danach-punkt h3 {
    margin: 0 0 6px 0;

    font-size: 17px;
}

.danach-punkt p {
    margin: 0;

    font-size: 14px;

    line-height: 1.5;

    color: #555;
}


/* =========================================
   ERSTGESPRÄCH INFOBOX
   ========================================= */

.erstgespraech-info-box {
    width: 100%;
    max-width: 850px;

    margin: 0 auto 50px auto;

    padding: 35px;

    background-color: white;

    border-radius: 12px;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.erstgespraech-info-box h2 {
    margin-bottom: 25px;

    font-size: 25px;
}

.erstgespraech-info-container {
    max-width: 650px;

    margin: 0 auto;
}

.erstgespraech-info-punkt {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;
}

.erstgespraech-info-punkt:last-child {
    margin-bottom: 0;
}

.erstgespraech-info-punkt span {
    width: 30px;
    height: 30px;

    min-width: 30px;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: #e7f1fb;

    color: #1E73BE;

    border-radius: 50%;

    font-size: 15px;
    font-weight: bold;
}

.erstgespraech-info-punkt p {
    margin: 0;

    font-size: 15px;

    line-height: 1.45;

    color: #444;
}


/* =========================================
   ERSTGESPRÄCH HINWEIS UNTEN
   ========================================= */

.erstgespraech-hinweis {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    padding: 35px 30px;

    background-color: white;

    text-align: center;

    border-radius: 12px;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.erstgespraech-hinweis h2 {
    margin-bottom: 10px;

    font-size: 25px;
}

.erstgespraech-hinweis p {
    max-width: 600px;

    margin: 0 auto 20px auto;

    color: #555;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    width: 100%;

    padding: 22px 20px;

    background-color: #222;

    display: flex;

    justify-content: center;

    gap: 35px;
}

footer a {
    color: white;

    text-decoration: none;

    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .kopfbereich {
        padding-left: 120px;
    }

    .startbereich h1 {
        font-size: 34px;
    }

    .kontakt-einleitung h1 {
        font-size: 34px;
    }

    .erstgespraech-einleitung h1 {
        font-size: 34px;
    }

    nav {
        gap: 25px;
    }

    .faecher-container {
        gap: 18px;
    }

    .fach-karte {
        padding: 18px 15px;
    }

    .calendly-bereich {
        padding: 25px;
    }

    .danach-container {
        gap: 20px;
    }
}


/* =========================================
   HANDY
   ========================================= */

@media (max-width: 700px) {

    .kopfbereich {
        justify-content: center;

        padding: 15px;
    }

    .logo {
        width: 290px;
    }

    nav {
        gap: 10px;

        padding: 10px 5px;

        flex-wrap: wrap;
    }

    nav a {
        font-size: 15px;

        padding: 5px;
    }

    .startbereich {
        padding: 35px 20px 30px 20px;
    }

    .startbereich h1 {
        font-size: 30px;
    }

    .startbereich p {
        font-size: 17px;
    }

    .start-buttons {
        flex-direction: column;

        gap: 12px;
    }

    .start-button {
        width: 100%;

        max-width: 280px;
    }

    .faecher-bereich {
        padding: 40px 20px;
    }

    .faecher-container {
        flex-direction: column;

        align-items: center;

        margin-top: 30px;
    }

    .fach-karte {
        width: 100%;

        max-width: 380px;
    }

    .warum-bereich {
        padding: 45px 20px;
    }

    .vorteile-container {
        flex-direction: column;

        align-items: center;

        gap: 35px;
    }

    .vorteil {
        max-width: 380px;
    }

    .kontaktseite {
        padding: 35px 18px 45px 18px;
    }

    .kontakt-einleitung h1 {
        font-size: 30px;
    }

    .kontakt-einleitung p {
        font-size: 17px;
    }

    .kontakt-container {
        flex-direction: column;
    }

    .kontakt-formular-box,
    .kontakt-info {
        width: 100%;
    }

    .kontakt-info h2 {
        text-align: center;
    }

    .danke-bereich {
        padding: 45px 18px;
    }

    .danke-box {
        padding: 40px 20px;
    }

    .danke-symbol {
        width: 65px;
        height: 65px;

        font-size: 32px;
    }

    .danke-box h1 {
        font-size: 27px;
    }

    .danke-box p {
        font-size: 17px;
    }


    /* =====================================
       ERSTGESPRÄCH HANDY
       ===================================== */

    .erstgespraech-seite {
        padding: 35px 18px 45px 18px;
    }

    .erstgespraech-einleitung {
        margin-bottom: 30px;
    }

    .erstgespraech-einleitung h1 {
        font-size: 30px;
    }

    .erstgespraech-einleitung p {
        font-size: 17px;
    }

    .erstgespraech-vorteile {
        flex-direction: column;

        gap: 12px;

        margin-bottom: 40px;
    }

    .erstgespraech-vorteil {
        width: 100%;
    }

    .ablauf-container {
        flex-direction: column;

        align-items: center;
    }

    .ablauf-schritt {
        width: 100%;
        max-width: 420px;
    }

    .calendly-bereich {
        padding: 22px 15px;

        margin-bottom: 40px;
    }

    .calendly-inline-widget {
        min-width: 280px;
    }

    .danach-container {
        flex-direction: column;

        gap: 5px;
    }

    .danach-bereich {
        padding: 30px 22px 15px 22px;
    }

    .erstgespraech-info-box {
        padding: 30px 22px;
    }

    footer {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }
}


/* =========================================
   SEHR KLEINE HANDYS
   ========================================= */

@media (max-width: 450px) {

    .logo {
        width: 250px;
    }

    nav a {
        font-size: 14px;
    }

    .startbereich h1,
    .kontakt-einleitung h1,
    .erstgespraech-einleitung h1 {
        font-size: 26px;
    }

    .startbereich p,
    .kontakt-einleitung p,
    .erstgespraech-einleitung p {
        font-size: 16px;
    }

    .fach-symbol {
        width: 55px;
        height: 55px;

        font-size: 31px;
    }

    .kontakt-formular-box {
        padding: 22px 18px;
    }

    .kontakt-info {
        padding: 22px 18px;
    }

    .calendly-bereich {
        padding: 20px 8px;
    }

    .calendly-kopf {
        padding: 0 10px;
    }

    .calendly-kopf h2 {
        font-size: 24px;
    }

    .calendly-inline-widget {
        min-width: 260px;
    }

    .danach-bereich h2 {
        font-size: 24px;
    }

    .erstgespraech-info-box h2 {
        font-size: 23px;
    }

    .erstgespraech-hinweis {
        padding: 30px 20px;
    }
}
/* =========================================
   DATENSCHUTZ / RECHTLICHE SEITEN
   ========================================= */

.rechtliches-seite {
    background-color: #f7f9fc;
    padding: 60px 20px 70px;
}

.rechtliches-container {
    max-width: 950px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}


/* Hauptüberschrift */

.rechtliches-container h1 {
    color: #1E73BE;
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 35px;
    text-align: center;
}


/* Abschnittsüberschriften */

.rechtliches-container h2 {
    color: #1E73BE;
    font-size: 23px;
    margin-top: 40px;
    margin-bottom: 15px;
}


/* Texte */

.rechtliches-container p {
    font-size: 17px;
    line-height: 1.75;
    color: #333333;
    margin-top: 0;
    margin-bottom: 18px;
}


/* Aufzählungen */

.rechtliches-container ul {
    margin: 10px 0 25px 0;
    padding-left: 25px;
}

.rechtliches-container li {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 7px;
}


/* Links */

.rechtliches-container a {
    color: #1E73BE;
    text-decoration: none;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rechtliches-container a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .rechtliches-seite {
        padding: 50px 25px 60px;
    }

    .rechtliches-container {
        padding: 45px 40px;
    }

}


/* =========================================
   HANDY
   ========================================= */

@media (max-width: 700px) {

    .rechtliches-seite {
        padding: 30px 15px 45px;
    }

    .rechtliches-container {
        padding: 30px 22px;
        border-radius: 10px;
    }

    .rechtliches-container h1 {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .rechtliches-container h2 {
        font-size: 21px;
        margin-top: 32px;
        margin-bottom: 12px;
    }

    .rechtliches-container p {
        font-size: 16px;
        line-height: 1.7;
    }

    .rechtliches-container li {
        font-size: 16px;
        line-height: 1.65;
    }

}


/* =========================================
   KLEINE HANDYS
   ========================================= */

@media (max-width: 450px) {

    .rechtliches-seite {
        padding: 20px 10px 35px;
    }

    .rechtliches-container {
        padding: 25px 17px;
    }

    .rechtliches-container h1 {
        font-size: 26px;
    }

    .rechtliches-container h2 {
        font-size: 20px;
    }

    .rechtliches-container p,
    .rechtliches-container li {
        font-size: 15px;
    }

}
.formular-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* =========================================
   DANKE-SEITE
   ========================================= */

.danke-seite {
    min-height: 550px;
    background-color: #f7f9fc;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.danke-container {
    width: 100%;
    max-width: 750px;
    background-color: #ffffff;
    padding: 55px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.danke-symbol {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #1E73BE;
    color: #ffffff;

    border-radius: 50%;

    font-size: 38px;
    font-weight: bold;
}

.danke-container h1 {
    color: #1E73BE;
    font-size: 34px;
    margin: 0 0 25px;
}

.danke-container p {
    color: #333333;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.danke-hinweis {
    margin: 30px 0;
    padding: 18px 20px;

    background-color: #f1f7fc;
    border-radius: 8px;

    color: #1E73BE;
    font-size: 17px;
    font-weight: bold;
}

.danke-container .start-button {
    display: inline-block;
    margin-top: 5px;
}


/* =========================================
   DANKE-SEITE HANDY
   ========================================= */

@media (max-width: 700px) {

    .danke-seite {
        min-height: 500px;
        padding: 40px 15px;
    }

    .danke-container {
        padding: 40px 22px;
    }

    .danke-symbol {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .danke-container h1 {
        font-size: 28px;
    }

    .danke-container p {
        font-size: 16px;
    }

    .danke-hinweis {
        font-size: 16px;
    }
}
