

        body {
            font-family: 'Poppins', sans-serif;
            font-weight: 100;
            color: #1a1b1f;
            width: 100vw;
            height: 100vh;
            margin: 0;
        }

        /* Grundlayout */
        .site-header {
            z-index: 3;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8vh;
            padding: 16px 40px;
            /* font-family: 'Montserrat', sans-serif; */
        }

        /* Flexbox-Container */
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            height: 9vh;
            margin: 0 auto;
        }

        /* Logo / Markenname */
        .brand {
            font-weight: 700;
            font-size: 20px;
            color: #1a1b1f;
            text-decoration: none;
            height: 8vh;
        }

        /* Navigationslinks in der Mitte */
        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: #1a1b1f;
            font-weight: 400;
            font-size: 16px;
        }

        .nav-links a:hover {
            color: #555;
        }

        /* Kontaktbutton rechts */
        .btn-contact {
            padding: 10px 18px;
            background-color: #1a1b1f;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            /* max-height: 100%; */
        }

        .btn-contact:hover {
            background-color: #333;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 94vh;
            width: 100vw;
            /* passt sich der Bildschirmhöhe an */
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('img/truck.jpg') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            /* font-family: 'Montserrat', sans-serif; */
        }

        /* Über uns */
        .about {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 40px;
            font-family: 'Montserrat', system-ui, sans-serif;
            color: #1a1b1f;
        }

        .about-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .about .lede {
            color: #6e727b;
            margin-top: 8px;
        }

        .about-grid {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-media {
            flex: 1;
        }

        .about-media img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: clamp(20px, 3vw, 28px);
            margin: 0 0 10px;
        }

        .about-text p {
            color: #6e727b;
            line-height: 1.7;
            margin: 0 0 18px;
            max-width: 56ch;
        }

        .about-list {
            margin: 0 0 22px;
            padding-left: 18px;
            color: #1a1b1f;
        }

        .about-list li {
            margin: 6px 0;
        }

        .about-cta .btn {
            padding: 12px 22px;
            border-radius: 8px;
            background: #1a1b1f;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .tel-button {
            max-width: 38px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .about-grid {
                flex-direction: column;
                text-align: center;
            }

            .about-text p,
            .about-list {
                margin-left: auto;
                margin-right: auto;
            }

            .nav-links {
                gap: 12px;
            }
        }


        /* Inhalt */
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;

        }

        .trust-badges {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
        }


        .trustline {
            margin-top: 29px;
        }

        .hero h1 {
            font-size: clamp(32px, 6vw, 60px);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: clamp(16px, 2vw, 22px);
            margin-bottom: 25px;
            opacity: 0.9;
        }

        /* Button */
        .btn-hero {
            background-color: white;
            color: #1a1b1f;
            text-decoration: none;
            padding: 14px 26px;
            border-radius: 6px;
            font-weight: 600;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .btn-hero:hover {
            background-color: #1a1b1f;
            color: white;
        }

        /* Abschnitt */
        .angebot {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 40px;
            font-family: 'Montserrat', sans-serif;
            color: #1a1b1f;
        }

        /* Überschrift oben */
        .angebot-header {
            text-align: center;
            margin-bottom: 13px;
        }

        .eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 14px;
            color: #6e727b;
            margin-bottom: 10px;
        }

        .angebot-header h2 {
            font-size: clamp(24px, 4vw, 34px);
            font-weight: 500;
            margin: 0;
        }

        /* Inhaltliche Blöcke */
        .angebot-block {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            margin-bottom: 100px;
        }

        /* Umgekehrte Anordnung für den zweiten Block */
        .angebot-block.reverse {
            flex-direction: row-reverse;
        }

        /* Text */
        .angebot-text {
            flex: 1;
        }

        .angebot-text h3 {
            font-size: clamp(20px, 3vw, 28px);
            margin-bottom: 10px;
        }

        .angebot-text p {
            color: #6e727b;
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 480px;
        }

        /* Bilder */
        .angebot-img {
            flex: 1;
            margin-bottom: 55px;
        }

        .angebot-img img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        /* Buttons */
        .btn-ghost {
            display: inline-block;
            padding: 10px 20px;
            border: 1px solid #1a1b1f;
            border-radius: 6px;
            color: #1a1b1f;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s ease;
        }

        .btn-ghost:hover {
            background: #1a1b1f;
            color: white;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .angebot-block {
                flex-direction: column;
                text-align: center;
            }

            .angebot-block.reverse {
                flex-direction: column;
            }

            .angebot-text p {
                margin: 0 auto 20px;
            }

        }

        /* Container helper (falls noch nicht vorhanden) */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            font-family: Montserrat, system-ui, sans-serif
        }

        /* CTA / Kontaktbereich */
        .cta {
            background: #f3f4f5;
            padding: 80px 0;
            text-align: center;
            color: #1a1b1f;
        }

        .cta__inner h2 {
            font-size: clamp(26px, 4.5vw, 34px);
            letter-spacing: .02em;
            margin: 0 0 10px;
            font-weight: 600;
        }

        .cta__inner p {
            color: #6e727b;
            margin: 0 0 22px;
        }

        .btn {
            display: inline-block;
            padding: 12px 22px;
            background: #1a1b1f;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
        }

        .btn:hover {
            opacity: .9
        }

        .btn--dark {
            border: 0
        }

        /* Kontaktformular schlicht */
        .contact-form {
            margin: 28px auto 0;
            max-width: 720px;
            text-align: left;
            width: 80vw;
        }

        .contact-form .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-form label span {
            display: block;
            font-size: .9rem;
            color: #6e727b;
            margin-bottom: 6px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            border: 1px solid #e3e4e6;
            border-radius: 8px;
            padding: 12px 14px;
            font: inherit;
            color: #1a1b1f;
            background: #fff;
        }

        .contact-form .block {
            margin-top: 16px;
            align-items: center;
            display: flex;
            flex-direction: column;
        }

        .contact-form button {
            margin-top: 16px;
            cursor: pointer;
        }

        @media (max-width:800px) {
            .contact-form .grid {
                grid-template-columns: 1fr
            }
        }

        /* Footer */
        .site-footer {
            padding: 40px 0;
            border-top: 1px solid #e9eaec;
            background: #fff;
        }

        .footer__inner {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
            text-align: center;
        }

        .footer__brand {
            color: #6e727b;
            font-size: .9rem
        }

        .footer__links a {
            color: #6e727b;
            text-decoration: none;
            margin: 0 10px;
            font-size: .9rem;
        }

        .footer__links a:hover {
            color: #1a1b1f
        }

        .cta {
            background: #f3f4f5;
            padding: 100px 40px;
            font-family: 'Montserrat', sans-serif;
            color: #1a1b1f;
        }

        /* Flexbox für Hauptlayout */
        .cta-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            flex-direction: column;
            max-width: 1200px;
        }



        .cta-container>* {
            flex: 1 1 0;
            /* beide Kinder teilen sich Platz gleichmäßig */
            min-width: 0;
            /* verhindert, dass Flex-Items größer als der Container werden */
            box-sizing: border-box;
            /* sorgt für korrekt berechnete Breiten */
        }


        /* Textblock links */
        .cta-text {
            flex: 1;
            text-align: center;
        }

        .cta-text h2 {
            font-size: clamp(26px, 4.5vw, 36px);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cta-text p {
            color: #6e727b;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 22px;
            background: #1a1b1f;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: 0.2s ease;
        }

        .btn:hover {
            opacity: 0.9;
        }

        .btn--dark {
            border: 0;
        }

        /* Formular rechts */
        .contact-form {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .form-row {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            flex-direction: column;
        }

        .form-row label {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        label span {
            font-size: 0.9rem;
            color: #6e727b;
            margin-bottom: 6px;
        }

        input,
        textarea {
            /* width: 100%; */
            border: 1px solid #e3e4e6;
            border-radius: 8px;
            padding: 12px 14px;
            font: inherit;
            color: #1a1b1f;
            background: #fff;
        }

        textarea {
            resize: vertical;
            margin-bottom: 12px;
        }

        .contact-form button {
            cursor: pointer;
            width: 100%;
        }

        /* =========================
   KONTAKT-BEREICH / FORMULAR
   ========================= */

        .kontakt {
            background: #f3f4f5;
            padding: 100px 40px;
            font-family: 'Montserrat', sans-serif;
            color: #1a1b1f;
        }

        .kontakt-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header im gleichen Stil wie Angebot / Über uns */
        .kontakt-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .kontakt-header h2 {
            font-size: clamp(24px, 4vw, 34px);
            font-weight: 500;
            margin: 0 0 10px;
        }

        .kontakt-header p {
            color: #6e727b;
            margin: 0;
        }

        /* Formular-Card */
        .kontakt-form {
            background: #ffffff;
            border-radius: 12px;
            padding: 28px 32px 32px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            max-width: 1000px;
            margin: 0 auto;
            box-sizing: border-box;

        }

        /* Service-Typ (Umzug / Entrümpelung) */
        .service-type {
            border: 0;
            padding: 0;
            margin: 0 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px 16px;
        }

        .service-type legend {
            font-weight: 600;
            font-size: 0.95rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }

        .service-type label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid #e3e4e6;
            background: #f8f8f9;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.15s ease, border-color 0.15s ease;
        }

        .service-type input[type="radio"] {
            accent-color: #1a1b1f;
        }

        .service-type input[type="radio"]:checked+span {
            font-weight: 600;
        }

        /* Grid-Layout für Felder */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        /* Labels & Eingabefelder im Formular */
        .kontakt-form h3 {
            font-size: 1.1rem;
            margin: 24px 0 12px;
            font-weight: 600;
            text-align: center;
        }

        .kontakt-form label {
            display: flex;
            flex-direction: column;
            font-size: 0.9rem;
            color: #444;
            gap: 6px;
        }

        .kontakt-form input,
        .kontakt-form select,
        .kontakt-form textarea {
            /* width: 100%; */
            border: 1px solid #e3e4e6;
            border-radius: 8px;
            padding: 10px 12px;
            font: inherit;
            color: #1a1b1f;
            background: #fff;
            box-sizing: border-box;
        }

        .kontakt-form input:focus,
        .kontakt-form select:focus,
        .kontakt-form textarea:focus {
            outline: none;
            border-color: #1a1b1f;
            box-shadow: 0 0 0 1px #1a1b1f11;
        }

        .kontakt-form textarea {
            resize: vertical;
            min-height: 90px;
        }

        /* Checkbox-Liste für Zusatzleistungen */
        .form-checklist {
            display: flex;
            /* flex-wrap: wrap; */
            /* justify-content: center; */
            flex-direction: column;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 8px 16px;
            margin-bottom: 24px;
        }

        .form-checklist label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 400;

            flex-direction: row;
        }

        .form-checklist input[type="checkbox"] {
            accent-color: #1a1b1f;
        }

        /* Vollbreite-Textfeld (Zusatzinfos) */
        .full-width {
            display: block;
            margin-bottom: 24px;
        }

        /* CTA-Button unten */
        .btn-primary {
            display: inline-block;
            padding: 12px 22px;
            background: #1a1b1f;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.2s ease;
            margin-top: 8px;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .contact-form-button-div {
            width: 100%;
            display: flex;
            justify-content: center !important;
        }

        /* Responsive Anpassungen */
        @media (max-width: 900px) {
            .kontakt {
                padding: 80px 20px;
            }

            .kontakt-form {
                padding: 20px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .service-type {
                flex-direction: row;
                align-items: flex-start;
            }
        }


        /* Responsive */
        @media (max-width: 900px) {
            .cta-container {
                flex-direction: column;
                text-align: center;
            }

            .cta-text {
                text-align: center;
            }

            .contact-form {
                width: 100%;
                max-width: 367px;
            }

            .angebot-block {
                margin-bottom: 10px;
            }
        }


        /* Navigation bei kleinen Bildschirmen ausblenden */
        @media (max-width: 460px) {
            .nav-links {
                display: none;
            }
        }

        .tel-btn-div {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .headerimg {
            height: 100%;
        }
