
        /* Grundlegende Reset und Schrift */
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: white;
            color: #333;
            line-height: 1.6;
        }

        a {
            color: #000000;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .banner {
            background-color: rgba(252, 185, 0, 1);
            color: white;
            text-align: center;
            padding: 1 rem;
          }


        banner-header {
            position: relative;
            width: 100%;
            overflow: hidden;
          }
          
          .banner-img {
            width: 100%;
            height: auto;
            display: block; 
          }
          

/* Neue Box über dem Bild */
.banner-box {
    position: absolute;
    top: 40%;
    right: 10%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.70);
    padding: 40px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-align: left;
}

.banner-box h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.banner-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000000;
}

.cta-button {
    display: inline-block;
    background-color: #27c2ff;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #27c2ff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .banner-box {
        position: static;             /* <- NICHT absolute */
        transform: none;              /* <- kein Verschieben */
        top: auto;
        right: auto;
        margin: 20px auto;
        padding: 25px 29px 40px;
        text-align: center;
        max-width: 90%;
    }

    .banner-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-img {
        width: 100%;
        height: auto;
        display: block;
    }
}


        header {
            position: relative;
            width: 100%;
            height: auto;
            display: block; 
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }



        header h1,
        header p {
            position: relative;
            z-index: 1;
            margin: 0;
        }

        header h1 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        header p {
            font-size: 1.25rem;
            margin-top: 0.5rem;
            font-weight: 300;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 80px;
        }

        .logo img {
            height: 100%;
            max-height: 60px;

        }

        nav {
            position: sticky;
            top: 0;
            background: rgba(252, 185, 0, 0.9);
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }



        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
            padding: 0.5rem 1rem;
            position: relative;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            color: #000000;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #00b8a9;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: #000000;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                width: 100%;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
        }










        section {
            max-width: 1440px;
            margin: 2rem auto 4rem;
            padding: 0 1rem;
            margin-bottom: 3rem;
            background: #fff;
            padding: 2rem;
            scroll-margin-top: 80px;
            /* Höhe der Nav + etwas Abstand */
        }
        section:nth-of-type(2n) {
            background-color: #f7f7f7; /* zartes Grau, anpassbar */
        }

        section h2 {
            color: #000000;
            font-weight: 700;
            margin-bottom: 1.25rem;
            border-bottom: 2px solid #e2bd17;
            padding-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        section_highlight {
            position: relative;
            display: flex;
            flex-direction: column;
            margin-bottom: 2rem;
            background: #27c2ff;
            padding: 2rem;
            scroll-margin-top: 80px;
            /* Höhe der Nav + etwas Abstand */



        }

        ul {
            padding-left: 0;
            display: block;
            list-style-type: disc;
            margin-block-start: 1em;
            margin-block-end: 1em;
            padding-inline-start: 8px;
            unicode-bidi: isolate;
        }

        ul li {
            padding-left: 1.25rem;
            position: relative;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        blockquote {
            font-style: italic;
            color: #00796b;
            border-left: 4px solid #00b8a9;
            padding-left: 1rem;
            margin: 0;
        }

        .testimonial-wrapper {
            display: flex;
            align-items: center;
            gap: 1.75rem;
            margin-top: 50px;
        }

        .testimonial-wrapper img {
            border-radius: 50%;
            width: 120px;
            height: 120px;
            object-fit: cover;
            box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
        }

        footer {
            background: #222;
            color: #fff;
            text-align: center;
            padding: 1.5rem 1rem;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 600px) {
            header h1 {
                font-size: 2rem;
            }

            .testimonial-wrapper {
                flex-direction: column;
                text-align: center;
            }
        }

        .fullwidth-background {
            background: url('img/Ausdauer_Rheinfall.jpg') top/cover no-repeat;
            padding: 4rem 0;
        }

        .bild-text-box {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            padding: 20px;

        }

        .bild-text-box img {
            max-width: 300px;
            border-radius: 8px;
            min-width: 250px;
        }

        .bild-text-box .text {
            flex: 1 1 300px;
            text-align: left;
        }

        .bild-text-box3 {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            max-width: 1000px;
            margin: auto;
            flex-wrap: wrap;
        }

        .bild-text-box3 .eintrag {
            text-align: left;
            flex: 1;
            min-width: 250px;
        }

        .bild-text-box3 .eintrag img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .bild-text-box3 .text {
            margin-top: 10px;
            font-size: 14px;
            color: #333;
        }





        .contact-section {
            padding: 40px;
            text-align: center;
        }

        .contact-btn {
            background-color: #e2bd17;
            color: black;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 10;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            width: 100%;
            max-width: 400px;
        }

        .form-field {
            margin-bottom: 15px;
            text-align: left;
        }

        .form-field input,
        .form-field textarea {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }

        .close-btn {
            float: right;
            cursor: pointer;
            font-size: 20px;
        }

    /* Grundlayout Team */
    #team h2 {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        margin-bottom: 1.5rem;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .team-member {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
        padding: 1rem;
        text-align: center;
    }

    .team-member img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

    .team-member h3 {
        margin: 0.5rem 0 0.25rem;

    }

    .team-member p {
        margin: 0;

        font-weight: 500;
    }

    /* Karussell Styles */
    .carousel-container {
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
    }

    .carousel-track-container {
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.3s ease-in-out;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .carousel-track .team-member {
        min-width: 25%;
        /* 4 sichtbar bei großen Bildschirmen */
        box-sizing: border-box;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #009edd;
        border: none;
        color: white;
        font-size: 2rem;
        padding: 0 12px;
        cursor: pointer;
        border-radius: 4px;
        user-select: none;
        z-index: 10;
    }

    .left-btn {
        left: 10px;
    }

    .right-btn {
        right: 10px;
    }

    /* Responsive - Handy */
    @media (max-width: 768px) {
        .team-grid {
            display: none;
            /* auf Handy kein Grid */
        }

        .carousel-track .team-member {
            min-width: 100%;
            /* nur 1 sichtbar */
        }

        .bild-text-box {
            flex-direction: column;
            text-align: right;
        }
    }


    /* Footer */


    .top-section {
        display: flex;
        flex-wrap: wrap;
      }
      .map-container {
        flex: 1;
        min-width: 240px;
        height: 300px;
      }
      .info-container {
        flex: 1;
        min-width: 300px;
        background: url('https://www.schweizmobil.ch/content/schweizmobil/en/services/image.html?img=/static/maps/img/etappeheader/6070_header.jpg') no-repeat center center;
        background-size: cover;
        padding: 2rem;
        color: #fff;
      }
      .bottom-section {
        display: flex;
        flex-wrap: wrap;
        background: #222;
        padding: 2rem;
        color: #fff;
      }
      .column {
        flex: 1;
        min-width: 250px;
        margin-bottom: 1rem;
        padding: 1rem;
      }
      h2 {
        margin-top: 0;
      }
      .contact-icon {
        margin-right: 10px;
      }
