/* *========== Schrift ========== */

@import url("./fonts.css");

body {
    font-family: "DM Sans", Arial, sans-serif;
    font-weight: 500;
}

h1,
h2,
h3 {
    font-family: "Fraunces", Georgia, serif;
}

/* *========= Global ========= */

* {
    box-sizing: border-box;
}

/* *========= Generelles ========== */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.haekchen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--mini-icons);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.heading-pat {
    color: var(--headings);
    font-size: 1rem;
    font-weight: bold;
}

.text-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    color: var(--svg-color);
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1;
}

.text-small-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    color: var(--svg-color);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

/* *=== */

.version-icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    color: var(--icon-color);
}

.version-icon::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 14px;
    width: 2px;
    height: 32px;
    background-color: currentColor;
    border-radius: 999px;
}

.version-icon::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 30px;
    width: 20px;
    height: 16px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 0 10px 0 0;
}

.version-icon .dot {
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: currentColor;
    border-radius: 50%;
}

.version-icon .dot-top {
    left: 16px;
    top: 10px;
}

.version-icon .dot-middle {
    left: 16px;
    top: 28px;
}

.version-icon .dot-bottom {
    left: 38px;
    top: 43px;
}

/* *========== Karten-Schatten ========== */

.card-shadow {
    border: 1px solid var(--card-border-color);
    box-shadow: 4px 16px 10px var(--card-shadow);
}

/* *========== Farbe ========== */

:root {
    --primare-color: #153349;
    --nav-transparent: #789ac4;
    --selectoren-background: #2c7fba2d;
    --card-shadow: #1533492f;
    --headings: #003b66;
    --mini-icons: #00518a;
    --card-border-color: #15334924;
    --icon-color: #00518a;
    --svg-color: #00518a;
}



/* *========== Navigations-Bereich ========== */

.nav-leiste {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
    background: var(--nav-transparent);
    background: linear-gradient(135deg, rgba(120, 154, 196, 1) 0%, rgba(21, 51, 73, 1) 99%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    height: 60px;
    margin: 0;
    padding: 0;
    border-radius: 20px;
}

.nav-logo>img {
    height: 60px;
}

.nav-container>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin: 0;
}

.nav-container>ul>li {
    display: flex;
    height: 40px;
    align-items: center;
    padding: 0 1rem;
}

.nav-card {
    list-style: none;
    text-align: center;
}

.nav-card>a {
    text-decoration: none;
    color: #ffffff;
}

#active {
    /* border-bottom: 2px solid #153349; */
    /* background-color: #269ef4; */
    background-color: #1f6394;
    border-radius: 16px;
    /* box-shadow: 0px 0px 20px #269ef4; */
    box-shadow: 0px 0px 20px #1b3b56;

}

/* *=== Media Queries === */

@media (max-width: 966px) {
    .nav-leiste {
        height: 120px;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 715px) {
    .nav-container>ul {
        gap: 1rem;
    }
}


@media (max-width: 682px) {
    .nav-leiste {
        position: static;
        z-index: 1000;
        height: 420px;
        background-color: var(--nav-transparent);
    }

    .nav-container {
        justify-content: center;
        padding: 0;
    }

    .nav-container>ul {
        display: flex;
        flex-direction: column;
        gap: 1.3rem;
        padding: 0;
    }

    .nav-logo>img {
        height: 60px;
    }
}

@media (max-width: 320px) {
    .nav-logo>img {
        height: 50px;
    }
}

/* *========== Header-Bereich ========== */

#hero {
    height: 600px;
    padding: 2rem;
    background-image: url(../img/header-background-blue.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}

#header-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

#header-card {
    padding: .5rem;
}

#header-card>div {
    width: 70%;
}

#header-card>div>h1 {
    font-size: 3.5rem;
}

#header-card>div>h1>span {
    color: var(--headings);
}

#header-card>div>p {
    font-size: 1.2rem;
}

#header-vorteile>p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem !important;
    margin: 0;
}

#header-img {
    display: flex;
    justify-content: left;
    align-items: center;
}

#header-img>img {
    height: 536px;
}

@media (max-width: 1293px) {
    #header-card>div>h1 {
        font-size: 3rem;
    }

    #header-card>div>p {
        font-size: 1rem;
    }

    #header-vorteile>p {
        font-size: 1rem !important;
    }

    #header-img>img {
        height: 450px;
    }
}

/* *=== Media Queries === */

@media (max-width: 1093px) {
    #header-img>img {
        height: 380px;
    }
}

@media (max-width: 997px) {
    #hero {
        height: 400px;
    }

    #header-container {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        text-align: center;
    }

    #header-img {
        display: none;
    }

    #header-card>div {
        margin: 0 auto;
        width: 80%;
    }

    #header-vorteile>p {
        display: inline-flex;
    }
}

@media (max-width: 702px) {
    #header-card {
        padding-bottom: 1rem;
    }

    #header-vorteile {
        display: none;
    }
}

@media (max-width: 660px) {
    #header-card>div>h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 360px) {
    #header-card>div>h1 {
        font-size: 2rem;
    }
}

/* *========== SEO Text Section ========== */

.seo-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background-color: var(--selectoren-background);
    border-radius: 16px;
    text-align: center;
}

.seo-text-section h2 {
    margin-bottom: 0;
    color: var(--headings);
    font-weight: 700;
    font-size: 2rem;
}

.seo-text-section p {
    max-width: 760px;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* *========== Leistungen-Index ========== */

#leistungen-index {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 3rem;
}

/* *=== Ueberschrift ===*/

#leistungen-ueberschrift>h2 {
    font-weight: 700;
    font-size: 2rem;
    color: var(--headings);

}

/* *======================= */

#leistungen-index-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 35px;
    justify-content: center;
    margin: 0 auto;
}

.leistungen-index-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    padding: 1rem;
    background-color: var(--selectoren-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
}

.leistungen-index-logo>img {
    width: 60px;
    height: 60px;
}


.leistungen-index-content>h3 {
    color: var(--headings);

}

@media (max-width: 1500px) {
    #leistungen-index-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 935px) {
    #leistungen-index-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 553px) {
    #leistungen-index-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .leistungen-index-card {
        min-height: auto;
    }
}

/* *========== Ablauf ========== */

#ablauf {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 3rem;
    width: 95%;
    margin: 0 auto;
    background-color: var(--selectoren-background);
    border-radius: 16px;
    margin-bottom: 3rem;
}

/* *=== Ueberschrift === */

#ablauf-ueberschrift>h2 {
    color: var(--headings);
    font-weight: 700;
    font-size: 2rem;
}


/* *==================== */

#ablauf-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(1, 1fr);
    justify-content: center;
    padding: 2rem;
    margin: 0 auto;
    gap: 35px;
}

.ablauf-content>h3 {
    color: var(--headings);
}

/* *=== Cards === */

.ablauf-card {
    display: flex;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid var(--card-border-color);
    box-shadow: 4px 16px 10px var(--card-shadow);
    border-radius: 16px;
    margin: 0 auto;
}

.ablauf-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ablauf-icon>span {
    position: absolute;
    top: -6px;
    left: calc(55% - 50px);
    width: 20px;
    height: 20px;
    background-color: var(--mini-icons);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.ablauf-icon>img {
    display: flex;

    width: 60px;
    background-color: var(--selectoren-background);
    border-radius: 50%;
    padding: .5rem;
    object-fit: contain;


}

/* *=== Arrow === */

.ablauf-pfeil-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ablauf-pfeil-icon>img {
    width: 50px;
}

/* *=== Media Queries === */
@media (max-width: 1500px) {
    #ablauf-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .ablauf-pfeil-icon {
        display: none;
    }
}

@media (max-width: 1014px) {
    #ablauf-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 536px) {
    #ablauf-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 0.5rem;
    }
}


/* *========== Ueber mich ========== */

/* *=== GRID === */

#ueber-mich {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .4rem;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 3rem;
}

#profil-img {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    padding: 1rem;
    border-radius: 16px;
    margin: 0 auto;
}

#ueber-mich-container {
    grid-column: 3 / 6;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 16px;
}

#ueber-mich-staerken-container {
    grid-column: 1 / 6;
    grid-row: 2 / 3;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* *=== Einleitung ===  */


#ueber-mich-einleitung {
    width: 70%;
}

#ueber-mich-einleitung>h2 {
    color: var(--headings);
    font-weight: 700;
    font-size: 2rem;
}

#ueber-mich-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    background-color: var(--selectoren-background);
    padding: 1rem;
    border-radius: 16px;
}

.ueber-mich-card {
    display: flex;
    border-right: 1px solid;
    text-align: center;
    padding: 0 1.2rem;
}


.ueber-mich-card:last-child {
    border-right: 0;
    padding: .5rem;
}

.ueber-mich-icon {
    display: flex;
    align-items: center;
}

.ueber-mich-icon>img {
    width: 50px;
    height: 50px;
}

.ueber-mich-card>div>h3 {
    color: var(--headings);
}

/* *=== Profil-Bild === */

#profil-img>img {
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
}

/* *=== Ueber-mich-staerken === */

#ueber-mich-staerken-container {
    justify-items: center;
    background-color: var(--selectoren-background);
    border-radius: 16px;
    margin: 0 auto;
    padding: 1rem;
}

.ueber-mich-staerken-card {
    display: flex;
    align-items: center;
}

.ueber-mich-staerken-content {
    border-right: 1px solid;
    padding: .5rem;
}

.ueber-mich-staerken-card:last-child .ueber-mich-staerken-content {
    border-right: 0;
}

.ueber-mich-staerken-content>h3 {
    color: var(--headings);
}

.ueber-mich-staerken-img {
    padding: .5rem;
}

.ueber-mich-staerken-img>img {
    width: 60px;
}

@media (max-width: 1500px) {
    #ueber-mich-einleitung {
        width: 90%;
    }

    .ueber-mich-icon {
        display: none;
    }
}

@media (max-width: 1110px) {
    #ueber-mich-einleitung {
        width: 100%;
    }

    #ueber-mich-einleitung>p {
        font-size: .94rem;
    }

    .ueber-mich-card>div>h3 {
        font-size: 1rem;
    }

    .ueber-mich-card>div>p {
        font-size: .9rem;
    }

    .ueber-mich-staerken-img {
        display: none;
    }

    .ueber-mich-staerken-content {
        text-align: center;
    }
}

@media (max-width: 1000px) {
    #ueber-mich-container {
        grid-column: 1 / 6;
        grid-row: 1 / 2;
        text-align: center;
    }

    #ueber-mich-einleitung {
        display: flex;
        flex-direction: column;
        margin: 0 auto;

        width: 80%;
    }

    #ueber-mich-einleitung>p {
        font-size: 1rem;
    }

    .ueber-mich-card>div>h3 {
        font-size: 1.2rem;
    }

    .ueber-mich-card>div>p {
        font-size: 1rem;
    }

    #profil-img {
        display: none;
    }
}

@media (max-width: 960px) {
    #ueber-mich-staerken-container {
        grid-template-columns: repeat(2, 1fr);
        background-color: white;
        gap: 2rem;
    }

    .ueber-mich-staerken-card {
        width: 300px;
        background-color: var(--selectoren-background);
        border-radius: 16px;
        border: 1px solid var(--card-border-color);
        box-shadow: 4px 16px 10px var(--card-shadow);
    }

    .ueber-mich-staerken-content {
        border-right: 0;
    }
}

@media (max-width: 682px) {
    #ueber-mich-staerken-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 682px) {
    #ueber-mich-content {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        gap: 2rem;
    }

    .ueber-mich-card {
        display: flex;
        background-color: var(--selectoren-background);
        justify-content: center;
        border-radius: 16px;
        width: 50%;
        margin: 0 auto;
        border: 0;
        border: 1px solid var(--card-border-color);
        box-shadow: 4px 16px 10px var(--card-shadow);
    }
}

@media (max-width: 400px) {
    .ueber-mich-card {
        width: 70%;
    }
}

@media (max-width: 340px) {
    #ueber-mich-staerken-container {
        padding: 1rem .3rem 1rem .3rem;
    }
}


/* *========== FOOTER ========== */

.footer {
    background: #789ac4;
    background: linear-gradient(61deg, rgba(120, 154, 196, 1) 0%, rgba(21, 51, 73, 1) 99%);
    min-height: 200px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 98%;
    margin: 0 auto;
}

/* *=== Logo === */

.footer-logo-card {
    width: 15%;
}

.footer-logo>img {
    height: 60px;
}

.footer-logo>p {
    padding-left: 0.5rem;
    margin-top: 0;
}

/* *=== Kontakt === */

.footer-kontakt-card {
    display: flex;
    flex-direction: column;
}

.footer-kontakt-card>a {
    color: #000000;
    text-decoration: none;
    padding-bottom: .7rem;
}

.kontakt-hinweis {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

/* *=== Links === */

.footer-links-card {
    display: flex;
    flex-direction: column;
}

.footer-links-card>a {
    padding-bottom: .4rem;
    color: #000000;
    text-decoration: none;
}

/* *===Rechtliches === */

.footer-rechtliches-card {
    display: flex;
    flex-direction: column;
}

.footer-rechtliches-card>a {
    color: #000000;
    text-decoration: none;
    padding-bottom: .7rem;
}

@media (max-width: 1271px) {
    .footer-logo-card {
        width: 30%;
    }
}

@media (max-width: 720px) {
    .footer-logo>img {
        height: 40px;
    }
}

@media (max-width: 682px) {

    .footer-kontakt-card,
    .footer-links-card,
    .footer-rechtliches-card,
    .footer-logo-card {
        padding-right: 2rem;
    }
}

@media (max-width: 682px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 380px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    .footer-logo-card {
        display: flex;
        width: auto;
    }

    .footer-logo>img {
        height: 60px;
    }

    .footer-kontakt-card,
    .footer-links-card,
    .footer-rechtliches-card,
    .footer-logo-card {
        padding-right: 0;
    }
}


/* *==================================================================================================== */

/* *========= Ueber-mich-seite =========== */

#ueber-mich-page {
    margin: 2rem 0;
}

#ueber-mich-page-container {
    display: flex;
    width: 95%;
    margin: 0 auto;
}

#ueber-mich-page-card {
    display: flex;
    flex-direction: column;
}

#ueber-mich-page-content>h1 {
    font-size: 3.5rem;
    margin: 0;
    width: 75%;
}

#ueber-mich-page-content>p {
    width: 60%;
}

#ueber-mich-page-vorteile {
    display: flex;
    gap: 50px;
}

#ueber-mich-page-vorteile>p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    background-color: var(--selectoren-background);
    border-radius: 16px;
    padding: .2rem .6rem;
}

#ueber-mich-page-vorteile>p>span {
    line-height: 0;
}


#ueber-mich-page-img-card>img {
    width: 600px;
    height: 400px;
    border-radius: 16px;
}

@media (max-width: 1200px) {
    #ueber-mich-page-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #ueber-mich-page-content {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        width: 70%;
    }

    #ueber-mich-page-content>h1 {
        width: 100%;
        font-size: 2.4rem;
    }

    #ueber-mich-page-content>p {
        width: 100%;
    }

    #ueber-mich-page-vorteile {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 650px) {
    #ueber-mich-page-img-card>img {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 542px) {
    #ueber-mich-page-vorteile {
        flex-direction: column;
        margin: 0 auto;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    #ueber-mich-page-vorteile>p {
        justify-content: center;
    }

    #ueber-mich-page-content>h1 {
        font-size: 1.6rem;
    }
}


/* *========== Story ========== */

#story {
    background-color: var(--selectoren-background);
    padding: 2rem 0;
}

#story-container {
    display: flex;
    width: 95%;
    margin: 0 auto;
}

#story-einleitung {
    width: 30%;
}

#story-einleitung>h2 {
    font-size: 2.5rem;
    margin: 0;
    width: 75%;
}

#story-einleitung>p {
    width: 90%;
}

#story-line-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    margin: 0 auto;
    width: 70%;
    padding: 1rem;
    background-color: #fff;
    border-radius: 16px;
}

.story-line-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    height: 350px;
    border-radius: 1rem;
}

.story-line-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    background-color: var(--selectoren-background);
}

.story-line-img>img {
    width: 60px;
}

@media (max-width: 1423px) {
    #story-line-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-line-card {
        height: auto;
    }
}

@media (max-width: 1341px) {
    #story-container {
        flex-direction: column;
    }

    #story-line-container {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }

    #story-container {
        text-align: center;
    }

    #story-einleitung {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 50%;
        margin-bottom: 1rem;
    }

    #story-einleitung>h2 {
        width: 100%;
        margin-top: 1rem;
    }

    #story-einleitung>p {
        width: 100%;
    }
}

@media (max-width: 980px) {
    #story-line-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;

    }
}

@media (max-width: 542px) {
    #story-einleitung {
        width: 70%;
    }

    #story-einleitung>h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 360px) {
    #story-line-container {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* *========== So-arbeite-ich ========== */

#how-i-works {
    margin: 0 auto;
    width: 95%;
    padding: 2rem 0;
    text-align: center;
}

#how-i-works-heading>h2 {
    margin: 0;
    margin-bottom: 1rem;
}

#how-i-works-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    justify-items: center;
    gap: 3rem;
}

.how-i-works-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    max-width: 260px;
    height: 350px;
    background-color: var(--selectoren-background);
    border-radius: 16px;
}

.how-i-works-img {
    display: flex;
    justify-content: center;
    align-self: center;
    width: 5rem;
    height: 5rem;
    background-color: #FFF;
    border-radius: 50%;
}

.how-i-works-img>img {
    width: 60px;
}

@media (max-width: 1120px) {
    #how-i-works-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-i-works-card {
        height: auto;
    }
}

@media (max-width: 460px) {
    #how-i-works-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* *========== Meine-Tools ========== */

#my-tools {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;

    background-color: var(--selectoren-background);
}

#my-tools-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

#my-tools-heading>h2 {
    display: flex;
    margin: 0;
}

#my-tools-heading>p {
    display: flex;
    width: 75%;
}

#my-tools-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 80%;
    padding: 2rem 0;
}

#my-tools-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.my-tools-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: .7rem;
    width: 300px;
    padding: .1rem 2rem;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
}

.my-tools-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-tools-img>img {
    width: 60px;
}


/* *======================================================================================= */

/* * ========== Leistungen-Page ========== */

/* *========== Header-Bereich ========== */

#leistungen-page-hero {
    height: 600px;
    padding: 2rem;
    background-image: url(../img/header-background-blue.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}

#leistungen-page-header-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

#leistungen-page-header-card {
    padding: .5rem;
}

#leistungen-page-header-card>div {
    width: 70%;
}

#leistungen-page-header-card>div>h1 {
    font-size: 3.5rem;
}

#leistungen-page-header-card>div>h1>span {
    color: var(--headings);
}

#leistungen-page-header-card>div>p {
    font-size: 1.2rem;
}

#leistungen-page-header-vorteile>p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem !important;
    margin: 0;
}

#leistungen-page-header-img {
    display: flex;
    justify-content: left;
    align-items: center;
}

#leistungen-page-header-img>img {
    height: 536px;
}


@media (max-width: 1293px) {
    #leistungen-page-header-card>div>h1 {
        font-size: 3rem;
    }

    #leistungen-page-header-card>div>p {
        font-size: 1rem;
    }

    #leistungen-page-header-vorteile>p {
        font-size: 1rem !important;
    }

    #leistungen-page-header-img>img {
        height: 450px;
    }
}

/* *=== Media Queries === */

@media (max-width: 1093px) {
    #leistungen-page-header-img>img {
        height: 380px;
    }
}

@media (max-width: 997px) {
    #leistungen-page-hero {
        height: 400px;
    }

    #leistungen-page-header-container {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        text-align: center;
    }

    #leistungen-page-header-img {
        display: none;
    }

    #leistungen-page-header-card>div {
        margin: 0 auto;
        width: 80%;
    }

    #leistungen-page-header-vorteile>p {
        display: inline-flex;
    }
}

@media (max-width: 702px) {
    #leistungen-page-header-card {
        padding-bottom: 1rem;
    }

    #leistungen-page-header-vorteile {
        display: none;
    }
}

@media (max-width: 660px) {
    #leistungen-page-header-card>div>h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 360px) {
    #leistungen-page-header-card>div>h1 {
        font-size: 2rem;
    }
}

/* *========== Meine Leistungen ========== */

#meine-leistungen {

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--selectoren-background);
    text-align: center;
    padding: 2rem 0;
}

#meine-leistungen-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 95%;
    margin: 0 auto;
}

.meine-leistungen-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 16px;
    padding: 1rem;
}

.meine-leistungen-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    align-items: center;
    border-radius: 50%;
    background-color: var(--selectoren-background);
}

.meine-leistungen-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0 1rem;
    width: 75%;
    margin: 0 auto;
}

#meine-leistungen-heading {
    width: 50%;
}

#meine-leistungen-heading>h2 {
    margin: 0;
}

@media (max-width: 900px) {
    #meine-leistungen-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 470px) {
    .meine-leistungen-card {
        flex-direction: column;
    }

    .meine-leistungen-content {
        text-align: center;
        width: 100%;
    }
}

/* *=========================================================================== */

/* *========== Projekt-Page ========== */

#projekte {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--selectoren-background);
    text-align: center;
    padding: 2rem 0;
}

#projekte-heading {
    width: 50%;
}

#projekte-heading>h1 {
    margin: 0;
}

/* *===================================================================================== */

/* *========= Preise ========== */

#preise {
    margin: 2rem 0;
}

#preise-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 95%;
    margin: 0 auto 2rem;
}

#preise-heading>h1 {
    margin: 0 0 2rem;
}

#preise-container {
    display: flex;
    justify-content: center;
    gap: 2rem;

    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.preise-slide {
    display: flex;
}

.preise-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border: 1px solid #00000016;
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#preise-card-beliebt {
    border: 2px solid var(--icon-color);
    position: relative;
    bottom: 2rem;
}

.preise-liste {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.preise-liste>li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    text-align: left;
    margin-bottom: .65rem;
    line-height: 1.15;
    font-size: .95rem;
}

.preise-cost>h3 {
    margin: 0;
    font-size: 1.4rem;
}

.preise-cost>p {
    margin-top: .5rem;
}

.preis {
    display: flex;
    flex-direction: column;
}

.preis>data {
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: .2rem;
}

.preise-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 20px 30px var(--card-shadow);
}

#preis-beliebt {
    display: inline-flex;
    justify-content: center;
    position: relative;
    bottom: 44px;
    width: 5rem;
    background-color: var(--icon-color);
    border-radius: 16px;
}

#preis-beliebt>span {
    color: #FFF;
}


#pflege-paket {
    width: 95%;
    margin: 3rem auto 0;
}

.pflege-card {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1.3fr;
    align-items: center;
    gap: 2rem;

    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;

    background-color: var(--selectoren-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
}

.pflege-content {
    text-align: left;
}

.pflege-content h3 {
    margin: .3rem 0 1rem;
    color: var(--headings);
    font-size: 1.6rem;
}

.pflege-content p {
    margin: 0;
    line-height: 1.5;
}

.pflege-preis {
    text-align: center;
}

.pflege-preis .preis data {
    font-size: 2rem;
}

.pflege-liste {
    margin: 0;
}

@media (max-width: 900px) {
    .pflege-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pflege-content {
        text-align: center;
    }

    .pflege-liste {
        max-width: 420px;
        margin: 0 auto;
    }
}

#preise-faq {
    width: 95%;
    margin: 4rem auto 1rem;
}

#preise-faq-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

#preise-faq-heading > h2 {
    margin: 0 0 1rem;
    color: var(--headings);
}

#preise-faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;

    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background-color: var(--selectoren-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
}

.faq-item > h3 {
    margin: 0 0 .8rem;
    color: var(--headings);
}

.faq-item > p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 800px) {
    #preise-faq-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 1000px) {
    #preise-container {
        display: flex;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 3rem 0 2rem;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    #preise-container::-webkit-scrollbar {
        display: none;
    }

    .preise-slide {
        flex: 0 0 100%;
        min-width: 100%;

        display: flex;
        justify-content: center;

        scroll-snap-align: center;
        box-sizing: border-box;
        padding: 0 1rem;
    }

    .preise-card {
        width: 100%;
        max-width: 420px;
        padding: 2rem;
    }

    #preise-card-beliebt {
        bottom: 0;
    }

    #preise-heading {
        margin: 0 auto;
    }

    #preise-heading>h1 {
        margin: 0;
    }
}

/* *========== Kontakt ========== */

#kontakt {
    width: 95%;
    margin: 2rem auto 3rem;
}

#kontakt-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

#kontakt-heading>h1 {
    margin: 0 0 1rem;
    color: var(--headings);
    font-size: 3rem;
}

#kontakt-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.kontakt-formular,
.kontakt-info {
    background-color: var(--selectoren-background);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
    padding: 2rem;
}

.form-gruppe {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    text-align: left;
}

.form-gruppe label,
.form-checkbox label {
    font-weight: 700;
    margin-bottom: .4rem;
}

.form-gruppe input,
.form-gruppe select,
.form-gruppe textarea {
    font: inherit;
    padding: .8rem 1rem;
    border: 1px solid var(--card-border-color);
    border-radius: 12px;
    background-color: #fff;
}

.form-gruppe textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 1rem 0;
    text-align: left;
}

.form-checkbox input {
    margin-top: .25rem;
    flex-shrink: 0;
}

.kontakt-button {
    width: 100%;
    padding: .9rem 1.2rem;
    border: 0;
    border-radius: 16px;
    background-color: var(--icon-color);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.kontakt-button:hover {
    opacity: .9;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    text-align: center;
}

.kontakt-info h2 {
    margin: 0;
    color: var(--headings);
}

.kontakt-info a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {
    #kontakt-container {
        grid-template-columns: 1fr;
    }

    #kontakt-heading>h1 {
        font-size: 2.2rem;
    }
}

/* ========== Datenschutz-Seite ========== */

#datenschutz {
    padding: 3rem 0;
}

.datenschutz-section {
    width: 95%;
    margin: 0 auto;
}

.datenschutz-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #fff;
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    box-shadow: 4px 16px 10px var(--card-shadow);
}

.datenschutz-container h1 {
    margin: 0 0 2rem;
    color: var(--headings);
    font-size: 2.6rem;
}

.datenschutz-container h2 {
    margin: 3rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border-color);
    color: var(--headings);
    font-size: 1.8rem;
}

.datenschutz-container h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.datenschutz-container h3 {
    margin: 2rem 0 .7rem;
    color: var(--headings);
    font-size: 1.35rem;
}

.datenschutz-container h4 {
    margin: 1.4rem 0 .5rem;
    color: var(--primare-color);
    font-size: 1.05rem;
}

.datenschutz-container p,
.datenschutz-container li {
    line-height: 1.7;
}

.datenschutz-container p {
    margin: 0 0 1rem;
}

.datenschutz-container ul {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.datenschutz-container a {
    color: var(--icon-color);
    font-weight: 700;
    word-break: break-word;
}

@media (max-width: 700px) {
    #datenschutz {
        padding: 2rem 0;
    }

    .datenschutz-container {
        padding: 1.5rem;
    }

    .datenschutz-container h1 {
        font-size: 2rem;
    }

    .datenschutz-container h2 {
        font-size: 1.45rem;
    }

    .datenschutz-container h3 {
        font-size: 1.2rem;
    }
}

/* ========== Impressum ========== */

.impressum-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.impressum-hero {
    max-width: 780px;
    margin-bottom: 3rem;
}

.impressum-hero .section-label {
    margin-bottom: 0.75rem;
    color: #00518a;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.impressum-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.impressum-hero p {
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.impressum-card,
.impressum-source {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.impressum-card-wide,
.impressum-source {
    grid-column: 1 / -1;
}

.impressum-card h2 {
    margin-bottom: 1rem;
    color: #00518a;
    font-size: 1.4rem;
}

.impressum-card p,
.impressum-card address,
.impressum-source p {
    font-style: normal;
    line-height: 1.8;
}

.impressum-card a,
.impressum-source a {
    color: #00518a;
    font-weight: 700;
    text-decoration: none;
}

.impressum-card a:hover,
.impressum-source a:hover {
    text-decoration: underline;
}

.impressum-source {
    background-color: #eaf4fb;
}

/* ========== Impressum Responsive ========== */

@media (max-width: 800px) {
    .impressum-page {
        padding: 4rem 1.25rem;
    }

    .impressum-grid {
        grid-template-columns: 1fr;
    }

    .impressum-card,
    .impressum-source {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
}
