        /* css - Markenbotschafter 251005 */
        /* Hero Section */

        .mb-h1::after {
            margin-inline: auto;
        }

        .mb-list::marker {
              color: #96c317; /* Macht das Listenzeichen grün */
              content: "✔ "; /* Ändert den Listenpunkt zu einem Häkchen */
              font-weight: bold; /* Macht das Häkchen fett */
              font-size: 1.2em; /* Vergrößert das Häkchen */
        }

        .mb-hero {
            /* background: linear-gradient(135deg, rgba(0, 150, 217, 0.05) 0%, rgba(150, 195, 23, 0.05) 100%); */
            /* padding: 80px 0 60px; */
            padding: 0 0 60px;
            text-align: center;
            border-bottom: 4px solid #96c317;
            position: relative;
        }

        /* Image Placeholder Hero */
        .mb-hero-image {
            max-width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #0096d9 0%, #96c317 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 3rem auto 2rem;
            /* border: 3px dashed rgba(85, 85, 85, 0.3); */
            position: relative;
            overflow: hidden;
            background-image: url(/cms_media/my_media/0/fn/lp/starte-jetzt-02a70bf5.webp);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;

        }

    /*    .mb-hero-image::before {
            content: 'Schmuckbild:\A Markenbotschafter Team\A oder Produktabbildung\A (1200 x 400 px)';
            white-space: pre;
            text-align: center;
            color: white;
            font-size: 1.2em;
            font-weight: 600;
            z-index: 2;
            position: relative;
        } */

        /* Video Section */
        .mb-video-section {
            background: #f9f9f9;
            padding: 20px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

        .mb-video-placeholder {
            max-width: 900px;
            margin: 0 auto;
            height: 500px;
            background: linear-gradient(135deg, #0096d9 0%, #00bfff 100%);
            border-radius: 10px;
            border: 3px solid #0096d9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mb-video-placeholder:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 150, 217, 0.3);
        }

    /*    .mb-video-placeholder::before {
            content: 'Video-Platzhalter\A Markenbotschafter Testimonials\A oder Produktvorstellung\A (900 x 500 px)';
            white-space: pre;
            text-align: center;
            color: white;
            font-size: 1.3em;
            font-weight: 600;
        } */

        .mb-play-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            margin-top: 2em;
            position: relative;
        }

        .mb-play-icon::after {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translate(-50%, -50%);
            color: #0096d9;
            font-size: 2em;
        }

        /* Content Sections */
        .mb-section {
            padding: 20px 0;
        }

        /* Grid for Features */
        .mb-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 3rem 0;
        }

        .mb-feature-box {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .mb-feature-box:hover {
            border-color: #96c317;
            box-shadow: 0 10px 30px rgba(150, 195, 23, 0.2);
            transform: translateY(-5px);
        }

        .mb-feature-box h4 {
            color: #0096d9;
            font-size: 1.3em;
            margin-bottom: 1em;
            font-weight: 600;
        }

        /* Benefits List as Flex Boxes */
        .mb-benefits-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 2rem 0;
        }

        .mb-benefit-item {
            flex: 1 1 calc(50% - 10px);
            background: linear-gradient(135deg, rgba(0, 150, 217, 0.05) 0%, rgba(150, 195, 23, 0.05) 100%);
            padding: 1.5em;
            border-radius: 10px;
            border-left: 4px solid #96c317;
            transition: all 0.3s ease;
        }

        .mb-benefit-item:hover {
            border-left-color: #0096d9;
            box-shadow: 0 5px 20px rgba(0, 150, 217, 0.15);
        }

        .mb-benefit-item strong {
            color: #0096d9;
            display: block;
            margin-bottom: 0.5em;
            font-size: 1.2em;
        }

        /* Compensation Grid */
        .mb-compensation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 2rem 0;
        }

        .mb-compensation-card {
            background: #fff;
            padding: 2em;
            border-radius: 10px;
            border: 2px solid #0096d9;
            text-align: center;
            transition: all 0.3s ease;
        }

        .mb-compensation-card:hover {
            background: linear-gradient(135deg, rgba(0, 150, 217, 0.1) 0%, rgba(150, 195, 23, 0.1) 100%);
            transform: scale(1.05);
        }

        .mb-compensation-value {
            font-size: 3em;
            font-weight: 700;
            color: #96c317;
            margin-bottom: 0.5em;
        }

        .mb-compensation-label {
            color: #555;
            font-size: 1em;
        }

        /* Steps Section */
        .mb-steps-container {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin: 3rem 0;
            position: relative;
        }

        .mb-step {
            flex: 1;
            background: #fff;
            padding: 2em;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            position: relative;
            text-align: center;
        }

        .mb-step::before {
            content: attr(data-step);
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0096d9, #96c317);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
            font-weight: 700;
            border: 4px solid #fff;
        }

        .mb-step h4 {
            color: #0096d9;
            font-size: 1.3em;
            margin: 2em 0 1em;
            font-weight: 600;
        }

        /* Image Placeholders */
        .mb-section-image {
            width: 100%;
            background: linear-gradient(135deg, rgba(0, 150, 217, 0.1) 0%, rgba(150, 195, 23, 0.1) 100%);
            border-radius: 10px;
            /* border: 3px dashed rgba(85, 85, 85, 0.3); */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2em 0;
            position: relative;
            background-image: url(/cms_media/my_media/0/fn/lp/laptop-3518277_1280_fnc_mb.jpg);
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center center;
          width: 100%;
          max-width: 1200px;
          height: 400px;
        }

        .mb-section-image::before {
            content: attr(data-placeholder);
            text-align: center;
            color: #555;
            font-size: 1.1em;
            font-weight: 600;
        }

        /* Call to Action */
        .mb-cta-section {
           /* background: linear-gradient(135deg, #0096d9 0%, #96c317 100%); */
            padding: 20px 0;
            text-align: center;
            color: white;
        }


        .mb-module-border-wrap {
          padding: 20px 0 0;
          position: relative;
          background: linear-gradient(to right, #0096d9, #96c317);
          padding: 5px;
          border-radius: 5px;
          max-width: 600px;
          margin-inline: auto;
        }

        .mb-module {
          background: #fff;
          color: #555;
        }

        /* Separator */
        .mb-hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #96c317, transparent);
            margin: 3em 0;
        }

        /* Highlight Box */
        .mb-highlight {
            background: linear-gradient(135deg, rgba(150, 195, 23, 0.1) 0%, rgba(0, 150, 217, 0.1) 100%);
            padding: 2em;
            border-radius: 10px;
            border-left: 5px solid #96c317;
            margin: 2em 0;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .mb-hero-image {
                height: 300px;
            }

            .mb-video-placeholder {
                height: 350px;
            }

            .mb-benefit-item {
                flex: 1 1 100%;
            }

            .mb-steps-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .mb-hero {
                padding: 40px 0 30px;
            }

            .mb-section {
                padding: 40px 0;
            }

            .mb-compensation-value {
                font-size: 2em;
            }
        }

        @media (max-width: 420px) {
            .mainContainer.contentBg.col-xs-12 {
                  padding-left: 0 !important;
                  padding-right: 0 !important;
            }
        }
