/* ========================================
   Grundeinstellungen
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #17365d;
    background: #ffffff;
}


/* ========================================
   Navigation
======================================== */

.header {
    height: 100px;
    background: #ffffff;
    border-bottom: 1px solid #e2e7ec;
}

.header-inner {
    width: 90%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 110px;
    height: auto;
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    color: #263b55;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
    color: #1674d1;
}


/* ========================================
   Navigation Dropdown
======================================== */

.nav-dropdown {
    position: relative;
}

.nav-dropbtn {
    border: 0;
    background: transparent;
    color: #263b55;
    font: inherit;
    cursor: pointer;
    padding: 10px 0;
}

.nav-dropbtn::after {
    content: "⌄";
    margin-left: 5px;
    font-size: 12px;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: -20px;

    min-width: 230px;
    padding: 10px;

    background: #ffffff;
    border: 1px solid #e6ebf0;
    border-radius: 8px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: 0.2s ease;

    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 11px 14px;
    white-space: nowrap;
    border-radius: 5px;
}

.nav-dropdown-content a:hover {
    background: #f3f6fa;
}

.nav-contact {
    padding: 10px 18px;
    background: #2379e7;
    color: #ffffff !important;
    border-radius: 5px;
}

.nav-contact:hover {
    background: #1767ca;
}


/* ========================================
   Hero
======================================== */

.hero {
    background: #f3f6fa;
    min-height: 355px;

    display: flex;
    align-items: center;
}

.hero-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 90px;
}

.hero-text h1 {
    margin: 0 0 5px;

    color: #17365d;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-text p {
    margin: 0 0 24px;

    color: #657080;
    font-size: 14px;
    line-height: 1.5;
}

.button {
    display: inline-block;

    padding: 12px 24px;

    background: #2379e7;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    border: 0;
    border-radius: 5px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: #1767ca;
    transform: translateY(-1px);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 355px;
    height: auto;

    display: block;

    border-radius: 10px;
}


/* ========================================
   Leistungen
======================================== */

.services {
    padding: 70px 20px 30px;
    background: #ffffff;
}

.services h2 {
    margin: 0 0 25px;

    text-align: center;

    color: #17365d;
    font-size: 24px;
    font-weight: 700;
}

.service-grid {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    min-height: 265px;
    padding: 55px 60px;

    background: #f7f9fb;
    border-radius: 7px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    margin-bottom: 25px;

    color: #173f70;
    font-size: 31px;
    line-height: 1;
    text-align: center;
}

/* Falls wir später SVG-Symbole verwenden */

.service-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: #173f70;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin: 0 0 18px;

    color: #17365d;
    font-size: 21px;
    font-weight: 700;
}

.service-card p {
    margin: 0;

    color: #303943;
    font-size: 13px;
    line-height: 1.65;
}


/* ========================================
   Dienstleistungspakete
======================================== */

.packages-section {
    padding: 70px 20px 90px;
    background: #f3f6fa;
}

.packages-section h2 {
    margin: 0 0 25px;

    text-align: center;

    color: #17365d;
    font-size: 24px;
    font-weight: 700;
}

.packages-grid {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.package-card {
    min-height: 320px;
    padding: 55px;

    background: #ffffff;
    border-radius: 7px;
}

.package-card h3 {
    margin: 0 0 18px;

    color: #17365d;
    font-size: 22px;
}

.package-price {
    margin: 0 0 35px;

    color: #222222;
    font-size: 14px;
}

.package-card ul {
    margin: 0 0 35px;
    padding-left: 22px;

    color: #222222;
    font-size: 13px;
    line-height: 1.6;
}


/* ========================================
   Hervorgehobenes Standard-Paket
======================================== */

.package-featured {
    position: relative;

    border: 2px solid #2379e7;

    z-index: 1;
    overflow: visible;
}

.background-star {
    position: absolute;

    z-index: -1;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 300px;
    line-height: 1;

    color: #ffd43b;
    opacity: 0.75;

    pointer-events: none;
}

.recommended-badge {
    position: absolute;

    top: -18px;
    left: 50%;

    transform: translateX(-50%);

    padding: 9px 22px;

    background: #ffd43b;
    color: #17365d;

    font-size: 13px;
    font-weight: 700;

    border-radius: 5px;

    white-space: nowrap;
}

.recommended-badge span {
    margin-right: 6px;
    font-size: 18px;
}


/* ========================================
   Zusammenarbeit
======================================== */

.workflow-section {
    padding: 70px 20px 90px;
    background: #f3f6fa;
}

.workflow-section h2 {
    margin: 0 0 40px;

    text-align: center;

    color: #17365d;
    font-size: 24px;
    font-weight: 700;
}

.workflow-grid {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.workflow-card {
    min-height: 260px;
    padding: 45px 40px;

    background: #ffffff;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* Symbolkreis */

.workflow-icon {
    width: 68px;
    height: 68px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;

    border-radius: 50%;
}

.workflow-icon svg {
    width: 32px;
    height: 32px;

    fill: none;
    stroke: #173f70;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-card h3 {
    margin: 0 0 16px;

    color: #17365d;
    font-size: 20px;
    font-weight: 700;
}

.workflow-card p {
    max-width: 360px;
    margin: 0;

    color: #303943;
    font-size: 13px;
    line-height: 1.65;
}


/* ========================================
   Über mich / Vorteile
======================================== */

.about-section {
    padding: 40px 20px 90px;
    background: #ffffff;
}

.about-grid {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-logo,
.about-content {
    min-height: 480px;

    background: #f7f9fb;

    border-radius: 7px;
}

.about-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo img {
    width: 60%;
    max-width: 550px;
    height: auto;
}

.about-content {
    padding: 55px 60px;
}

.about-content h2 {
    margin: 0 0 18px;

    color: #17365d;
    font-size: 24px;
    font-weight: 700;
}

.about-content p {
    margin: 0 0 35px;

    color: #303943;
    font-size: 13px;
    line-height: 1.6;
}

.benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits li {
    position: relative;

    margin-bottom: 10px;
    padding-left: 22px;

    color: #2379e7;
    font-size: 13px;
}

.benefits li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #17365d;
    font-weight: 700;
}


/* ========================================
   Abschluss / Kontakt Startseite
======================================== */

.final-cta {
    padding: 80px 20px;
    background: #f7f9fb;
}

.final-cta-inner {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
}

.final-cta h2 {
    margin: 0 0 18px;

    color: #17365d;
    font-size: 25px;
    font-weight: 700;
}

.final-cta p {
    color: #303943;
    font-size: 13px;
    line-height: 1.7;
}

.contact-note {
    margin-top: 20px;
}

.contact-note p {
    margin: 3px 0;
}


/* ========================================
   Kontaktseite - Kopfbereich
======================================== */

.contact-hero {
    padding: 70px 20px;

    background: #f3f6fa;

    text-align: center;
}

.contact-hero-inner {
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
}

.contact-hero h1 {
    margin: 0 0 15px;

    color: #17365d;
    font-size: 32px;
    font-weight: 700;
}

.contact-hero p {
    margin: 0;

    color: #657080;
    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   Kontaktseite mit Formular
======================================== */

.contact-section {
    padding: 80px 20px 100px;
    background: #ffffff;
}

.contact-layout {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
}


/* Linker Kontaktbereich */

.contact-info-box,
.contact-form-box {
    background: #f7f9fb;

    border-radius: 8px;
}

.contact-info-box {
    padding: 55px 45px;
}

.contact-page-logo {
    width: 180px;
    max-width: 100%;
    height: auto;

    margin-bottom: 35px;
}

.contact-info-box h2 {
    margin: 0 0 18px;

    color: #17365d;
    font-size: 27px;
}

.contact-info-box > p {
    margin: 0 0 35px;

    color: #657080;
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-item {
    padding-top: 25px;

    border-top: 1px solid #dfe5eb;
}

.contact-info-item strong {
    display: block;

    margin-bottom: 7px;

    color: #17365d;
    font-size: 14px;
}

.contact-info-item a {
    color: #2379e7;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-note-text {
    margin-top: 35px !important;

    font-size: 13px !important;
}


/* ========================================
   Kontaktformular
======================================== */

.contact-form-box {
    padding: 55px;
}

.contact-form-box h2 {
    margin: 0 0 10px;

    color: #17365d;
    font-size: 27px;
}

.form-intro {
    margin: 0 0 35px;

    color: #657080;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #17365d;
    font-size: 13px;
    font-weight: 600;
}

.optional {
    color: #89939f;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d5dce3;
    border-radius: 5px;

    background: #ffffff;

    color: #303943;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2379e7;

    box-shadow: 0 0 0 3px rgba(35, 121, 231, 0.10);
}


/* Datenschutz Checkbox */

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 5px 0 28px;
}

.privacy-check input {
    margin-top: 4px;

    flex-shrink: 0;
}

.privacy-check label {
    color: #657080;

    font-size: 12px;
    line-height: 1.6;
}

.privacy-check a {
    color: #2379e7;
}

.form-submit {
    border: 0;
    cursor: pointer;
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 1000px) {

    .navigation {
        gap: 15px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .service-card {
        padding: 40px 30px;
    }
}


/* ========================================
   Tablet / kleine Geräte
======================================== */

@media (max-width: 900px) {

    .packages-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .package-card,
    .workflow-card {
        min-height: auto;
    }
}


/* ========================================
   Smartphone
======================================== */

@media (max-width: 750px) {

    /* Navigation */

    .header {
        height: auto;
    }

    .header-inner {
        padding: 20px 0;

        flex-direction: column;

        gap: 20px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;

        gap: 15px;
    }


    /* Hero */

    .hero {
        padding: 60px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-image img {
        max-width: 450px;
    }


    /* Leistungen */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }


    /* Pakete */

    .package-card {
        padding: 45px 30px;
    }

    .background-star {
        font-size: 240px;
    }


    /* Zusammenarbeit */

    .workflow-card {
        padding: 40px 25px;
    }


    /* Über mich */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-logo,
    .about-content {
        min-height: auto;
    }

    .about-logo {
        padding: 50px 20px;
    }

    .about-content {
        padding: 40px 30px;
    }


    /* Abschluss */

    .final-cta {
        text-align: center;
    }


    /* Kontaktseite */

    .contact-hero {
        padding: 50px 20px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-section {
        padding: 50px 15px 70px;
    }

    .contact-layout {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 35px 25px;
    }

    .contact-page-logo {
        width: 150px;
    }
}
/* ========================================
   Datenschutz Popup
======================================== */

.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(15, 35, 60, 0.65);

    z-index: 99999;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    position: relative;

    width: 90%;
    max-width: 700px;
    max-height: 80vh;

    padding: 45px;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.privacy-modal-content h2 {
    margin: 0 0 25px;

    color: #17365d;

    font-size: 26px;
    font-weight: 700;
}

.privacy-modal-text h3 {
    margin: 0 0 15px;

    color: #17365d;

    font-size: 17px;
}

.privacy-modal-text p {
    margin: 0 0 15px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.7;
}


/* X zum Schließen */

.privacy-modal-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f3f6fa;

    color: #17365d;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition: background 0.2s ease;
}

.privacy-modal-close:hover {
    background: #e2e8ef;
}


/* Link zur vollständigen Datenschutzerklärung */

.privacy-full-link {
    display: inline-block;

    margin-top: 15px;

    padding: 11px 18px;

    background: #2379e7;

    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: background 0.2s ease;
}

.privacy-full-link:hover {
    background: #1767ca;
    text-decoration: none;
}


/* Popup auf Smartphones */

@media (max-width: 750px) {

    .privacy-modal {
        padding: 15px;
    }

    .privacy-modal-content {
        width: 100%;
        max-height: 85vh;

        padding: 35px 25px;
    }

    .privacy-modal-content h2 {
        padding-right: 35px;

        font-size: 22px;
    }

}
/* ========================================
   Datenschutzseite
======================================== */

.privacy-page-hero {
    padding: 70px 20px;
    background: #f3f6fa;
    text-align: center;
}

.privacy-page-hero-inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-page-hero h1 {
    margin: 0 0 15px;

    color: #17365d;
    font-size: 32px;
    font-weight: 700;
}

.privacy-page-hero p {
    margin: 0;

    color: #657080;
    font-size: 14px;
    line-height: 1.7;
}


/* Inhalt */

.privacy-page-section {
    padding: 70px 20px 100px;
    background: #ffffff;
}

.privacy-page-content {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;

    padding: 55px 65px;

    background: #f7f9fb;

    border-radius: 8px;
}

.privacy-page-content h2 {
    margin: 45px 0 18px;

    color: #17365d;
    font-size: 23px;
}

.privacy-page-content h2:first-child {
    margin-top: 0;
}

.privacy-page-content h3 {
    margin: 25px 0 10px;

    color: #17365d;
    font-size: 17px;
}

.privacy-page-content p {
    margin: 0 0 18px;

    color: #4c5968;
    font-size: 14px;
    line-height: 1.8;
}

.privacy-page-content a {
    color: #2379e7;
}

.privacy-address {
    margin: 25px 0;

    padding: 25px 30px;

    background: #ffffff;

    border-left: 4px solid #2379e7;

    border-radius: 5px;
}

.privacy-address strong {
    color: #17365d;
}

.privacy-address p {
    margin: 7px 0;
}


/* Smartphone */

@media (max-width: 750px) {

    .privacy-page-hero {
        padding: 50px 20px;
    }

    .privacy-page-hero h1 {
        font-size: 27px;
    }

    .privacy-page-section {
        padding: 40px 15px 70px;
    }

    .privacy-page-content {
        width: 100%;
        padding: 35px 25px;
    }

    .privacy-page-content h2 {
        font-size: 21px;
    }

}
/* ========================================
   Über-mich-Seite
======================================== */

/* Kopfbereich */

.about-page-hero {
    padding: 70px 20px;
    background: #f3f6fa;
    text-align: center;
}

.about-page-hero-inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.about-page-hero h1 {
    margin: 0 0 15px;

    color: #17365d;
    font-size: 32px;
    font-weight: 700;
}

.about-page-hero p {
    margin: 0;

    color: #657080;
    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   Vorstellung
======================================== */

.about-page-section {
    padding: 80px 20px;
    background: #ffffff;
}

.about-page-intro {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
}

.about-page-logo,
.about-page-text {
    min-height: 430px;

    border-radius: 8px;

    background: #f7f9fb;
}

.about-page-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
}

.about-page-logo img {
    width: 75%;
    max-width: 320px;
    height: auto;

    display: block;
}

.about-page-text {
    padding: 55px;
}

.about-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-page-text h2 {
    margin: 0 0 25px;

    color: #17365d;

    font-size: 28px;
    line-height: 1.25;
}

.about-page-text p {
    margin: 0 0 18px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   So arbeite ich
======================================== */

.about-values-section {
    padding: 80px 20px 95px;

    background: #f3f6fa;
}

.about-values-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-inner > h2 {
    margin: 0 0 35px;

    text-align: center;

    color: #17365d;

    font-size: 25px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-value-card {
    min-height: 260px;

    padding: 40px 35px;

    background: #ffffff;

    border-radius: 8px;

    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-value-number {
    width: 54px;
    height: 54px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;

    border-radius: 50%;

    color: #2379e7;

    font-size: 16px;
    font-weight: 700;
}

.about-value-card h3 {
    margin: 0 0 15px;

    color: #17365d;

    font-size: 20px;
}

.about-value-card p {
    margin: 0;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   Schwerpunkte
======================================== */

.about-focus-section {
    padding: 85px 20px;

    background: #ffffff;
}

.about-focus-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;

    align-items: start;
}

.about-focus-heading h2 {
    margin: 0 0 18px;

    color: #17365d;

    font-size: 27px;
    line-height: 1.3;
}

.about-focus-heading p {
    margin: 0;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}

.about-focus-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.about-focus-item {
    padding: 23px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: #f7f9fb;

    border: 1px solid transparent;
    border-radius: 7px;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.about-focus-item:hover {
    background: #ffffff;

    border-color: #2379e7;

    transform: translateX(3px);
}

.about-focus-item > div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.about-focus-item strong {
    color: #17365d;

    font-size: 16px;
}

.about-focus-item span {
    color: #657080;

    font-size: 13px;
    line-height: 1.55;
}

.about-focus-arrow {
    flex-shrink: 0;

    color: #2379e7 !important;

    font-size: 23px !important;
}


/* ========================================
   Warum HL-IT
======================================== */

.about-benefits-section {
    padding: 75px 20px;

    background: #f3f6fa;
}

.about-benefits-inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-benefits-inner h2 {
    margin: 0 0 35px;

    text-align: center;

    color: #17365d;

    font-size: 25px;
}

.about-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-benefits-list div {
    padding: 18px 22px;

    background: #ffffff;

    border-radius: 7px;

    color: #17365d;

    font-size: 14px;
    font-weight: 600;
}


/* ========================================
   Abschlussbereich
======================================== */

.about-page-cta {
    padding: 85px 20px;

    background: #ffffff;
}

.about-page-cta-inner {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;

    padding: 55px 60px;

    background: #f7f9fb;

    border-radius: 8px;

    text-align: center;
}

.about-page-cta h2 {
    margin: 0 0 18px;

    color: #17365d;

    font-size: 27px;
}

.about-page-cta p {
    max-width: 680px;
    margin: 0 auto 28px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   Über-mich-Seite Tablet
======================================== */

@media (max-width: 900px) {

    .about-page-intro {
        grid-template-columns: 1fr;
    }

    .about-page-logo,
    .about-page-text {
        min-height: auto;
    }

    .about-page-logo {
        padding: 55px 30px;
    }

    .about-page-logo img {
        max-width: 280px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
    }

    .about-focus-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* ========================================
   Über mich - Kopfbereich
======================================== */

.about-page-hero {
    padding: 55px 20px 45px;

    background: #f3f6fa;

    text-align: center;
}

.about-page-hero-inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.about-page-hero h1 {
    margin: 0 0 8px;

    color: #17365d;

    font-size: 32px;
    font-weight: 700;
}

.about-page-hero p {
    margin: 0;

    color: #657080;

    font-size: 14px;
    line-height: 1.6;
}


/* ========================================
   Vorstellung
======================================== */

.about-profile-section {
    padding: 55px 20px;

    background: #ffffff;
}

.about-profile-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 45px;

    align-items: center;
}


/* Persönliches Bild */

.about-profile-image {
    height: 350px;

    overflow: hidden;

    border-radius: 9px;

    background: #f3f6fa;
}

.about-profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* Vorstellungstext */

.about-profile-content {
    padding: 15px 0;
}

.about-label {
    display: block;

    margin-bottom: 8px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.about-profile-content h2 {
    margin: 0 0 22px;

    color: #17365d;

    font-size: 27px;
    line-height: 1.2;
}

.about-profile-content p {
    margin: 0 0 16px;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   So arbeite ich
======================================== */

.about-work-section {
    padding: 45px 20px 55px;

    background: #f3f6fa;
}

.about-work-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-work-inner > h2 {
    margin: 0 0 28px;

    text-align: center;

    color: #17365d;

    font-size: 25px;
}

.about-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.about-work-card {
    min-height: 145px;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e4e9ef;
    border-radius: 7px;
}


/* Blaue Symbole */

.about-work-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    border-radius: 50%;
}

.about-work-icon svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-work-number {
    display: block;

    margin-bottom: 4px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;
}

.about-work-text h3 {
    margin: 0 0 7px;

    color: #17365d;

    font-size: 16px;
}

.about-work-text p {
    margin: 0;

    color: #4c5968;

    font-size: 12px;
    line-height: 1.55;
}


/* ========================================
   Schwerpunkte + Warum HL-IT
======================================== */

.about-details-section {
    padding: 55px 20px 35px;

    background: #ffffff;
}

.about-details-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.about-focus h2,
.about-why h2 {
    margin: 0 0 8px;

    color: #17365d;

    font-size: 23px;
}

.about-details-intro {
    margin: 0 0 15px;

    color: #657080;

    font-size: 13px;
}


/* Schwerpunkt Zeilen */

.about-focus-row {
    min-height: 62px;

    margin-bottom: 9px;
    padding: 10px 15px;

    display: flex;
    align-items: center;

    gap: 14px;

    background: #ffffff;

    border: 1px solid #dfe5eb;
    border-radius: 6px;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.about-focus-row:hover {
    border-color: #2379e7;

    transform: translateX(3px);
}

.about-focus-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2379e7;

    font-size: 21px;
}

.about-focus-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.about-focus-text strong {
    color: #17365d;

    font-size: 13px;
}

.about-focus-text span {
    color: #657080;

    font-size: 11px;
    line-height: 1.4;
}

.about-focus-arrow {
    color: #2379e7;

    font-size: 21px;
}


/* Warum HL-IT */

.about-why-grid {
    margin-top: 22px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.about-why-item {
    min-height: 52px;

    padding: 12px 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid #dfe5eb;
    border-radius: 6px;

    color: #17365d;

    font-size: 12px;
    font-weight: 600;
}

.about-why-item span {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    border-radius: 50%;

    color: #ffffff;

    font-size: 11px;
}


/* ========================================
   Kontaktbereich unten
======================================== */

.about-contact-section {
    padding: 20px 20px 70px;

    background: #ffffff;
}

.about-contact-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 30px 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #eef5fd;

    border-radius: 8px;
}

.about-contact-text h2 {
    margin: 0 0 7px;

    color: #17365d;

    font-size: 21px;
}

.about-contact-text p {
    margin: 0;

    color: #657080;

    font-size: 12px;
    line-height: 1.6;
}

.about-contact-inner .button {
    flex-shrink: 0;
}


/* ========================================
   Über mich - Tablet
======================================== */

@media (max-width: 900px) {

    .about-profile-inner {
        grid-template-columns: 1fr;
    }

    .about-profile-image {
        width: 100%;
        max-width: 600px;
        height: 400px;

        margin: 0 auto;
    }

    .about-work-grid {
        grid-template-columns: 1fr;
    }

    .about-details-inner {
        grid-template-columns: 1fr;
    }

}


/* ========================================
   Über mich - Smartphone
======================================== */

@media (max-width: 750px) {

    .about-page-hero {
        padding: 45px 20px;
    }

    .about-page-hero h1 {
        font-size: 28px;
    }


    /* Foto */

    .about-profile-section {
        padding: 35px 15px 45px;
    }

    .about-profile-inner {
        width: 100%;

        gap: 30px;
    }

    .about-profile-image {
        height: 360px;
    }

    .about-profile-content h2 {
        font-size: 24px;
    }


    /* Arbeitsweise */

    .about-work-section {
        padding: 45px 15px;
    }

    .about-work-inner {
        width: 100%;
    }

    .about-work-card {
        min-height: auto;

        padding: 22px;
    }


    /* Details */

    .about-details-section {
        padding: 45px 15px 25px;
    }

    .about-details-inner {
        width: 100%;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }


    /* Kontakt */

    .about-contact-section {
        padding: 20px 15px 50px;
    }

    .about-contact-inner {
        width: 100%;

        padding: 28px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

}
/* ========================================
   Digitalisierungsförderung Startseite
======================================== */

.funding-banner {
    padding: 25px 20px;

    background: #ffffff;
}

.funding-banner-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 28px 35px;

    display: flex;
    align-items: center;

    gap: 25px;

    background: #eef5fd;

    border: 1px solid #d6e6fa;
    border-radius: 8px;
}

.funding-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    border-radius: 50%;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;
}

.funding-content {
    flex: 1;
}

.funding-label {
    display: block;

    margin-bottom: 4px;

    color: #2379e7;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.funding-content h2 {
    margin: 0 0 7px;

    color: #17365d;

    font-size: 21px;
}

.funding-content p {
    margin: 0;

    max-width: 750px;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.6;
}


/* Smartphone */

@media (max-width: 750px) {

    .funding-banner {
        padding: 20px 15px;
    }

    .funding-banner-inner {
        width: 100%;

        padding: 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .funding-content h2 {
        font-size: 20px;
    }

}
/* ========================================
   Digitalisierung - Hero
======================================== */

.digital-hero {
    padding: 85px 20px;

    background: #f3f6fa;
}

.digital-hero-inner {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;

    text-align: center;
}

.digital-label {
    display: block;

    margin-bottom: 12px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.digital-hero h1 {
    max-width: 800px;
    margin: 0 auto 20px;

    color: #17365d;

    font-size: 38px;
    line-height: 1.2;
}

.digital-hero p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   Digitalisierung - Einleitung
======================================== */

.digital-intro-section {
    padding: 80px 20px;

    background: #ffffff;
}

.digital-intro-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;
}

.digital-intro-heading h2 {
    margin: 0;

    color: #17365d;

    font-size: 29px;
    line-height: 1.3;
}

.digital-intro-text p {
    margin: 0 0 18px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   Digitalisierung - Leistungen
======================================== */

.digital-services-section {
    padding: 70px 20px 90px;

    background: #f3f6fa;
}

.digital-services-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.digital-services-inner > h2 {
    margin: 0 0 35px;

    color: #17365d;

    text-align: center;

    font-size: 26px;
}

.digital-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.digital-service-card {
    min-height: 235px;

    padding: 35px;

    background: #ffffff;

    border-radius: 8px;
}

.digital-service-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;

    border-radius: 50%;
}

.digital-service-icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: #2379e7;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.digital-service-card h3 {
    margin: 0 0 12px;

    color: #17365d;

    font-size: 18px;
}

.digital-service-card p {
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   Digitalisierungsförderung
======================================== */

.digital-funding-section {
    padding: 85px 20px;

    background: #ffffff;
}

.digital-funding-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 0.6fr;

    gap: 25px;
}

.digital-funding-main {
    padding: 50px;

    background: #eef5fd;

    border-radius: 9px;
}

.digital-funding-label {
    display: block;

    margin-bottom: 10px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.digital-funding-main h2 {
    margin: 0 0 18px;

    color: #17365d;

    font-size: 29px;
}

.digital-funding-main p {
    margin: 0 0 16px;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.75;
}

.digital-funding-lead {
    color: #17365d !important;

    font-size: 15px !important;
    font-weight: 600;
}

.digital-funding-warning {
    margin: 25px 0;

    padding: 18px 20px;

    display: flex;
    gap: 8px;

    background: #ffffff;

    border-left: 4px solid #2379e7;

    border-radius: 5px;

    color: #4c5968;

    font-size: 12px;
    line-height: 1.6;
}

.digital-funding-warning strong {
    color: #17365d;

    flex-shrink: 0;
}

.digital-official-link {
    color: #2379e7;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.digital-official-link:hover {
    text-decoration: underline;
}


/* Förderkarte rechts */

.digital-funding-card {
    padding: 40px 30px;

    background: #17365d;

    border-radius: 9px;

    color: #ffffff;
}

.digital-funding-percent {
    font-size: 15px;

    line-height: 1.2;
}

.digital-funding-percent strong {
    display: block;

    margin: 6px 0;

    font-size: 48px;
    line-height: 1;
}

.digital-funding-divider {
    height: 1px;

    margin: 25px 0;

    background: rgba(255, 255, 255, 0.25);
}

.digital-funding-card p {
    margin: 0 0 28px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   Ablauf
======================================== */

.digital-process-section {
    padding: 75px 20px 90px;

    background: #f3f6fa;
}

.digital-process-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.digital-process-inner > h2 {
    margin: 0 0 40px;

    text-align: center;

    color: #17365d;

    font-size: 26px;
}

.digital-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.digital-process-item {
    padding: 30px;

    background: #ffffff;

    border-radius: 8px;
}

.digital-process-item > span {
    display: block;

    margin-bottom: 20px;

    color: #2379e7;

    font-size: 15px;
    font-weight: 700;
}

.digital-process-item h3 {
    margin: 0 0 10px;

    color: #17365d;

    font-size: 17px;
}

.digital-process-item p {
    margin: 0;

    color: #657080;

    font-size: 12px;
    line-height: 1.7;
}


/* ========================================
   Abschluss Digitalisierung
======================================== */

.digital-contact-section {
    padding: 35px 20px 80px;

    background: #ffffff;
}

.digital-contact-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    padding: 38px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: #eef5fd;

    border-radius: 8px;
}

.digital-contact-inner h2 {
    margin: 0 0 9px;

    color: #17365d;

    font-size: 22px;
}

.digital-contact-inner p {
    max-width: 720px;

    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}

.digital-contact-inner .button {
    flex-shrink: 0;
}


/* ========================================
   Digitalisierung - Tablet
======================================== */

@media (max-width: 900px) {

    .digital-intro-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .digital-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .digital-funding-inner {
        grid-template-columns: 1fr;
    }

    .digital-process-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* ========================================
   Digitalisierung - Smartphone
======================================== */

@media (max-width: 750px) {

    .digital-hero {
        padding: 55px 20px;
    }

    .digital-hero h1 {
        font-size: 29px;
    }

    .digital-intro-section {
        padding: 55px 15px;
    }

    .digital-intro-inner {
        width: 100%;
    }

    .digital-intro-heading h2 {
        font-size: 24px;
    }

    .digital-services-section {
        padding: 55px 15px;
    }

    .digital-services-inner {
        width: 100%;
    }

    .digital-services-grid {
        grid-template-columns: 1fr;
    }

    .digital-service-card {
        min-height: auto;
    }

    .digital-funding-section {
        padding: 55px 15px;
    }

    .digital-funding-inner {
        width: 100%;
    }

    .digital-funding-main {
        padding: 35px 25px;
    }

    .digital-funding-main h2 {
        font-size: 24px;
    }

    .digital-funding-warning {
        flex-direction: column;
    }

    .digital-funding-card {
        padding: 35px 25px;
    }

    .digital-process-section {
        padding: 55px 15px;
    }

    .digital-process-inner {
        width: 100%;
    }

    .digital-process-grid {
        grid-template-columns: 1fr;
    }

    .digital-contact-section {
        padding: 25px 15px 55px;
    }

    .digital-contact-inner {
        width: 100%;

        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

}
/* ========================================
   NETZWERKE SEITE
======================================== */


/* ========================================
   Netzwerke - Hero
======================================== */

.network-hero {
    padding: 85px 20px;
    background: #f3f6fa;
}

.network-hero-inner {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.network-label {
    display: block;
    margin-bottom: 12px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.network-hero h1 {
    max-width: 800px;
    margin: 0 auto 20px;

    color: #17365d;

    font-size: 38px;
    line-height: 1.2;
}

.network-hero p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   Netzwerke - Einleitung
======================================== */

.network-intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.network-intro-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;
}

.network-intro-heading h2 {
    margin: 0;

    color: #17365d;

    font-size: 29px;
    line-height: 1.3;
}

.network-intro-text p {
    margin: 0 0 18px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   Netzwerke - Leistungen
======================================== */

.network-services-section {
    padding: 70px 20px 90px;
    background: #f3f6fa;
}

.network-services-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.network-services-inner > h2 {
    margin: 0 0 35px;

    color: #17365d;

    text-align: center;

    font-size: 26px;
}

.network-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.network-service-card {
    min-height: 235px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 8px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.network-service-card:hover {
    transform: translateY(-3px);

    border-color: #d4e2f2;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.network-service-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;

    border-radius: 50%;
}

.network-service-icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: #2379e7;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.network-service-card h3 {
    margin: 0 0 12px;

    color: #17365d;

    font-size: 18px;
}

.network-service-card p {
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   Netzwerke - Typische Probleme
======================================== */

.network-problems-section {
    padding: 80px 20px;
    background: #ffffff;
}

.network-problems-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}

.network-problems-text h2 {
    margin: 0 0 18px;

    color: #17365d;

    font-size: 28px;
    line-height: 1.3;
}

.network-problems-text p {
    margin: 0;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}

.network-problems-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.network-problem-item {
    min-height: 65px;

    padding: 16px 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    background: #f7f9fb;

    border: 1px solid #e3e8ee;
    border-radius: 7px;

    color: #17365d;

    font-size: 13px;
    line-height: 1.5;
}

.network-problem-item > span {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* ========================================
   Netzwerke - Ablauf
======================================== */

.network-process-section {
    padding: 75px 20px 90px;
    background: #f3f6fa;
}

.network-process-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.network-process-inner > h2 {
    margin: 0 0 40px;

    text-align: center;

    color: #17365d;

    font-size: 26px;
}

.network-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.network-process-card {
    position: relative;

    min-height: 210px;

    padding: 30px;

    background: #ffffff;

    border-radius: 8px;
}

.network-process-card > span {
    display: block;

    margin-bottom: 22px;

    color: #2379e7;

    font-size: 15px;
    font-weight: 700;
}

.network-process-card h3 {
    margin: 0 0 10px;

    color: #17365d;

    font-size: 17px;
}

.network-process-card p {
    margin: 0;

    color: #657080;

    font-size: 12px;
    line-height: 1.7;
}


/* ========================================
   Netzwerke - Sicherheit
======================================== */

.network-security-section {
    padding: 75px 20px;
    background: #ffffff;
}

.network-security-inner {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;

    padding: 45px 50px;

    display: flex;
    align-items: center;

    gap: 35px;

    background: #eef5fd;

    border-radius: 9px;
}

.network-security-icon {
    width: 85px;
    height: 85px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    border-radius: 50%;
}

.network-security-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.network-security-text {
    flex: 1;
}

.network-security-text h2 {
    margin: 0 0 13px;

    color: #17365d;

    font-size: 25px;
    line-height: 1.3;
}

.network-security-text p {
    margin: 0;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.75;
}


/* ========================================
   Netzwerke - Kontakt
======================================== */

.network-contact-section {
    padding: 20px 20px 80px;
    background: #ffffff;
}

.network-contact-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: #f3f6fa;

    border-radius: 8px;
}

.network-contact-inner h2 {
    margin: 0 0 9px;

    color: #17365d;

    font-size: 22px;
}

.network-contact-inner p {
    max-width: 700px;
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}

.network-contact-inner .button {
    flex-shrink: 0;
}


/* ========================================
   Netzwerke - Tablet
======================================== */

@media (max-width: 900px) {

    .network-intro-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .network-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .network-problems-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .network-process-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* ========================================
   Netzwerke - Smartphone
======================================== */

@media (max-width: 750px) {

    /* Hero */

    .network-hero {
        padding: 55px 20px;
    }

    .network-hero h1 {
        font-size: 29px;
    }


    /* Einleitung */

    .network-intro-section {
        padding: 55px 15px;
    }

    .network-intro-inner {
        width: 100%;
    }

    .network-intro-heading h2 {
        font-size: 24px;
    }


    /* Leistungen */

    .network-services-section {
        padding: 55px 15px;
    }

    .network-services-inner {
        width: 100%;
    }

    .network-services-grid {
        grid-template-columns: 1fr;
    }

    .network-service-card {
        min-height: auto;
    }


    /* Probleme */

    .network-problems-section {
        padding: 55px 15px;
    }

    .network-problems-inner {
        width: 100%;
    }

    .network-problems-text h2 {
        font-size: 24px;
    }

    .network-problems-list {
        grid-template-columns: 1fr;
    }


    /* Ablauf */

    .network-process-section {
        padding: 55px 15px;
    }

    .network-process-inner {
        width: 100%;
    }

    .network-process-grid {
        grid-template-columns: 1fr;
    }

    .network-process-card {
        min-height: auto;
    }


    /* Sicherheit */

    .network-security-section {
        padding: 55px 15px;
    }

    .network-security-inner {
        width: 100%;

        padding: 35px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .network-security-icon {
        width: 70px;
        height: 70px;
    }

    .network-security-icon svg {
        width: 35px;
        height: 35px;
    }

    .network-security-text h2 {
        font-size: 22px;
    }


    /* Kontakt */

    .network-contact-section {
        padding: 15px 15px 55px;
    }

    .network-contact-inner {
        width: 100%;

        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

}
/* ========================================
   IT-SUPPORT SEITE
======================================== */


/* ========================================
   IT-Support - Hero
======================================== */

.support-hero {
    padding: 85px 20px;
    background: #f3f6fa;
}

.support-hero-inner {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;

    text-align: center;
}

.support-label {
    display: block;

    margin-bottom: 12px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.support-hero h1 {
    max-width: 850px;
    margin: 0 auto 12px;

    color: #17365d;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}


/* Unterüberschrift im IT-Support Hero */

.support-hero h2 {
    max-width: 750px;
    margin: 0 auto 18px;

    color: #2379e7;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;
}

.support-hero p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   IT-Support - Einleitung
======================================== */

.support-intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.support-intro-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;
}

.support-intro-heading h2 {
    margin: 0;

    color: #17365d;

    font-size: 29px;
    line-height: 1.3;
}

.support-intro-text p {
    margin: 0 0 18px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   IT-Support - Leistungen
======================================== */

.support-services-section {
    padding: 70px 20px 90px;
    background: #f3f6fa;
}

.support-services-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.support-services-inner > h2 {
    margin: 0 0 35px;

    text-align: center;

    color: #17365d;

    font-size: 26px;
}

.support-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.support-service-card {
    min-height: 235px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 8px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.support-service-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.support-service-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;

    border-radius: 50%;
}

.support-service-icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: #2379e7;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-service-card h3 {
    margin: 0 0 12px;

    color: #17365d;

    font-size: 18px;
}

.support-service-card p {
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   IT-Support - Typische Probleme
======================================== */

.support-problems-section {
    padding: 80px 20px;
    background: #ffffff;
}

.support-problems-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}

.support-problems-text h2 {
    margin: 0 0 18px;

    color: #17365d;

    font-size: 28px;
}

.support-problems-text p {
    margin: 0;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}

.support-problems-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.support-problem-item {
    min-height: 65px;

    padding: 16px 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    background: #f7f9fb;

    border: 1px solid #e3e8ee;
    border-radius: 7px;

    color: #17365d;

    font-size: 13px;
    line-height: 1.5;
}

.support-problem-item > span {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* ========================================
   IT-Support - Fernwartung
======================================== */

.support-remote-section {
    padding: 75px 20px;
    background: #f3f6fa;
}

.support-remote-inner {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;

    padding: 45px 50px;

    display: flex;
    align-items: center;

    gap: 35px;

    background: #ffffff;

    border-radius: 9px;
}

.support-remote-icon {
    width: 85px;
    height: 85px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    border-radius: 50%;
}

.support-remote-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-remote-text h2 {
    margin: 0 0 13px;

    color: #17365d;

    font-size: 25px;
    line-height: 1.3;
}

.support-remote-text p {
    margin: 0;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.75;
}


/* ========================================
   IT-Support - Ablauf
======================================== */

.support-process-section {
    padding: 75px 20px 90px;
    background: #ffffff;
}

.support-process-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.support-process-inner > h2 {
    margin: 0 0 40px;

    text-align: center;

    color: #17365d;

    font-size: 26px;
}

.support-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.support-process-card {
    min-height: 210px;

    padding: 30px;

    background: #f7f9fb;

    border-radius: 8px;
}

.support-process-card > span {
    display: block;

    margin-bottom: 22px;

    color: #2379e7;

    font-size: 15px;
    font-weight: 700;
}

.support-process-card h3 {
    margin: 0 0 10px;

    color: #17365d;

    font-size: 17px;
}

.support-process-card p {
    margin: 0;

    color: #657080;

    font-size: 12px;
    line-height: 1.7;
}


/* ========================================
   IT-Support - Laufende Betreuung
======================================== */

.support-care-section {
    padding: 20px 20px 35px;
    background: #ffffff;
}

.support-care-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: #eef5fd;

    border-radius: 8px;
}

.support-care-inner h2 {
    margin: 0 0 9px;

    color: #17365d;

    font-size: 22px;
}

.support-care-inner p {
    max-width: 720px;
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}

.support-care-inner .button {
    flex-shrink: 0;
}


/* ========================================
   IT-Support - Kontakt
======================================== */

.support-contact-section {
    padding: 20px 20px 80px;
    background: #ffffff;
}

.support-contact-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: #f3f6fa;

    border-radius: 8px;
}

.support-contact-inner h2 {
    margin: 0 0 9px;

    color: #17365d;

    font-size: 22px;
}

.support-contact-inner p {
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   IT-Support - Tablet
======================================== */

@media (max-width: 900px) {

    .support-intro-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .support-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-problems-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .support-process-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* ========================================
   IT-Support - Smartphone
======================================== */

@media (max-width: 750px) {

    .support-hero {
        padding: 55px 20px;
    }

.support-hero h1 {
    font-size: 32px;
}

.support-hero h2 {
    font-size: 19px;
}

    .support-intro-section {
        padding: 55px 15px;
    }

    .support-intro-inner {
        width: 100%;
    }

    .support-intro-heading h2 {
        font-size: 24px;
    }

    .support-services-section {
        padding: 55px 15px;
    }

    .support-services-inner {
        width: 100%;
    }

    .support-services-grid {
        grid-template-columns: 1fr;
    }

    .support-service-card {
        min-height: auto;
    }

    .support-problems-section {
        padding: 55px 15px;
    }

    .support-problems-inner {
        width: 100%;
    }

    .support-problems-list {
        grid-template-columns: 1fr;
    }

    .support-remote-section {
        padding: 55px 15px;
    }

    .support-remote-inner {
        width: 100%;

        padding: 35px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .support-remote-icon {
        width: 70px;
        height: 70px;
    }

    .support-remote-icon svg {
        width: 35px;
        height: 35px;
    }

    .support-process-section {
        padding: 55px 15px;
    }

    .support-process-inner {
        width: 100%;
    }

    .support-process-grid {
        grid-template-columns: 1fr;
    }

    .support-process-card {
        min-height: auto;
    }

    .support-care-section,
    .support-contact-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .support-care-inner,
    .support-contact-inner {
        width: 100%;

        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

}
/* ========================================
   IT-DIENSTLEISTUNGSPAKETE
======================================== */


/* ========================================
   Pakete - Hero
======================================== */

.plans-hero {
    padding: 85px 20px;
    background: #f3f6fa;
}

.plans-hero-inner {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.plans-label {
    display: block;
    margin-bottom: 12px;

    color: #2379e7;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.plans-hero h1 {
    max-width: 850px;
    margin: 0 auto 12px;

    color: #17365d;

    font-size: 42px;
    line-height: 1.15;
}

.plans-hero h2 {
    max-width: 750px;
    margin: 0 auto 18px;

    color: #2379e7;

    font-size: 21px;
    line-height: 1.4;
}

.plans-hero p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   Pakete - Einleitung
======================================== */

.plans-intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.plans-intro-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;
}

.plans-intro-inner h2 {
    margin: 0;

    color: #17365d;

    font-size: 29px;
    line-height: 1.3;
}

.plans-intro-text p {
    margin: 0 0 18px;

    color: #4c5968;

    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   Paketübersicht
======================================== */

.plans-section {
    padding: 75px 20px 90px;
    background: #f3f6fa;
}

.plans-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.plans-heading h2 {
    margin: 0 0 12px;

    color: #17365d;

    font-size: 28px;
}

.plans-heading p {
    margin: 0;

    color: #657080;

    font-size: 14px;
    line-height: 1.7;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    align-items: stretch;
}


/* ========================================
   Einzelne Pakete
======================================== */

.plans-card {
    position: relative;

    padding: 38px 34px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e1e7ed;
    border-radius: 9px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.plans-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.plans-card-featured {
    border: 2px solid #2379e7;
}

.plans-recommended {
    position: absolute;

    top: -17px;
    left: 50%;

    transform: translateX(-50%);

    padding: 8px 20px;

    background: #ffd43b;
    color: #17365d;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

.plans-card-label {
    display: block;

    margin-bottom: 8px;

    color: #2379e7;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.plans-card h3 {
    margin: 0 0 15px;

    color: #17365d;

    font-size: 25px;
}

.plans-price {
    margin-bottom: 20px;

    display: flex;
    align-items: baseline;

    gap: 7px;
}

.plans-price strong {
    color: #17365d;

    font-size: 35px;
    line-height: 1;
}

.plans-price span {
    color: #657080;

    font-size: 12px;
}

.plans-card-header p {
    min-height: 68px;
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.65;
}

.plans-divider {
    height: 1px;

    margin: 27px 0;

    background: #e3e8ee;
}


/* ========================================
   Paket-Leistungen
======================================== */

.plans-features {
    list-style: none;

    margin: 0 0 30px;
    padding: 0;

    flex: 1;
}

.plans-features li {
    margin-bottom: 14px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.5;
}

.plans-features li span {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;
    color: #2379e7;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
}


/* ========================================
   Paket-Buttons
======================================== */

.plans-button-secondary {
    display: block;

    padding: 11px 18px;

    border: 1px solid #2379e7;
    border-radius: 5px;

    color: #2379e7;
    background: #ffffff;

    text-align: center;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;
}

.plans-button-secondary:hover {
    background: #eef5fd;
}

.plans-main-button {
    display: block;
    text-align: center;
}

.plans-price-note {
    max-width: 800px;

    margin: 30px auto 0;

    color: #7b8590;

    text-align: center;

    font-size: 11px;
    line-height: 1.6;
}


/* ========================================
   Welches Paket?
======================================== */

.plans-choice-section {
    padding: 80px 20px 90px;
    background: #ffffff;
}

.plans-choice-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

.plans-choice-heading {
    max-width: 700px;
    margin-bottom: 35px;
}

.plans-choice-heading h2 {
    margin: 0 0 14px;

    color: #17365d;

    font-size: 28px;
}

.plans-choice-heading p {
    margin: 0;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}

.plans-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.plans-choice-card {
    padding: 30px;

    background: #f7f9fb;

    border-radius: 8px;
}

.plans-choice-card > span {
    display: block;

    margin-bottom: 18px;

    color: #2379e7;

    font-size: 14px;
    font-weight: 700;
}

.plans-choice-card h3 {
    margin: 0 0 10px;

    color: #17365d;

    font-size: 18px;
}

.plans-choice-card p {
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   Individuelle Lösung
======================================== */

.plans-custom-section {
    padding: 20px 20px 60px;
    background: #ffffff;
}

.plans-custom-inner {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;

    padding: 42px 48px;

    display: flex;
    align-items: center;

    gap: 35px;

    background: #eef5fd;

    border-radius: 9px;
}

.plans-custom-icon {
    width: 75px;
    height: 75px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2379e7;

    border-radius: 50%;
}

.plans-custom-icon svg {
    width: 35px;
    height: 35px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.plans-custom-inner h2 {
    margin: 0 0 10px;

    color: #17365d;

    font-size: 23px;
}

.plans-custom-inner p {
    margin: 0;

    color: #4c5968;

    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   Pakete - Kontakt
======================================== */

.plans-contact-section {
    padding: 20px 20px 80px;
    background: #ffffff;
}

.plans-contact-inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background: #f3f6fa;

    border-radius: 8px;
}

.plans-contact-inner h2 {
    margin: 0 0 9px;

    color: #17365d;

    font-size: 22px;
}

.plans-contact-inner p {
    max-width: 700px;
    margin: 0;

    color: #657080;

    font-size: 13px;
    line-height: 1.7;
}

.plans-contact-inner .button {
    flex-shrink: 0;
}


/* ========================================
   Pakete - Tablet
======================================== */

@media (max-width: 900px) {

    .plans-intro-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plans-card-header p {
        min-height: auto;
    }

    .plans-choice-grid {
        grid-template-columns: 1fr;
    }

}


/* ========================================
   Pakete - Smartphone
======================================== */

@media (max-width: 750px) {

    .plans-hero {
        padding: 55px 20px;
    }

    .plans-hero h1 {
        font-size: 32px;
    }

    .plans-hero h2 {
        font-size: 19px;
    }

    .plans-intro-section {
        padding: 55px 15px;
    }

    .plans-intro-inner {
        width: 100%;
    }

    .plans-intro-inner h2 {
        font-size: 24px;
    }

    .plans-section {
        padding: 55px 15px;
    }

    .plans-inner {
        width: 100%;
    }

    .plans-card {
        padding: 35px 25px;
    }

    .plans-choice-section {
        padding: 55px 15px;
    }

    .plans-choice-inner {
        width: 100%;
    }

    .plans-custom-section {
        padding: 10px 15px 45px;
    }

    .plans-custom-inner {
        width: 100%;

        padding: 35px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

    .plans-contact-section {
        padding: 10px 15px 55px;
    }

    .plans-contact-inner {
        width: 100%;

        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;
    }

}
/* ========================================
   Kontaktformular - Spam-Schutz
======================================== */

.website-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* ========================================
   Danke-Seite
======================================== */

.thanks-section {
    min-height: calc(100vh - 100px);

    padding: 80px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f6fa;
}

.thanks-box {
    width: 90%;
    max-width: 650px;

    padding: 60px 50px;

    background: #ffffff;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.thanks-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f1fd;
    color: #2379e7;

    border-radius: 50%;

    font-size: 30px;
    font-weight: 700;
}

.thanks-box h1 {
    margin: 0 0 15px;

    color: #17365d;

    font-size: 30px;
}

.thanks-box p {
    max-width: 500px;

    margin: 0 auto 30px;

    color: #657080;

    font-size: 14px;
    line-height: 1.75;
}


@media (max-width: 750px) {

    .thanks-box {
        padding: 45px 25px;
    }

    .thanks-box h1 {
        font-size: 25px;
    }

}
/* ========================================
   Telefon & WhatsApp
======================================== */

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-action-button {
    min-width: 230px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #ffffff;
    color: #17365d;

    border: 1px solid #dce5ef;
    border-radius: 9px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.contact-action-button svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-action-button span {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-weight: 600;
}

.contact-action-button small {
    margin-bottom: 2px;
    color: #657080;
    font-size: 12px;
    font-weight: 400;
}


/* WhatsApp */

.whatsapp-button {
    color: #25D366;
}

.whatsapp-button span {
    color: #17365d;
}


/* Smartphone */

@media (max-width: 600px) {

    .contact-actions {
        flex-direction: column;
    }

    .contact-action-button {
        width: 100%;
        min-width: 0;
    }

}
/* ========================================
   WhatsApp auf Kontaktseite
======================================== */

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.contact-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: #25D366;
    flex-shrink: 0;
}

.contact-whatsapp:hover {
    text-decoration: underline;
}