* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Hind", Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    box-shadow: 0 4px 8px 0 #aaa;
}

.headline {
      font-size: 28px;
      font-family: Arial, sans-serif;
    }
    .headline .bold {
      font-weight: bold;
      color: #222; /* fast schwarz */
    }
    .headline .italic-green {
      font-style: italic;
      color: #0d683a; /* dunkelgrün */
    }

#wrapper .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

#wrapper .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 32px;
    display: flex;
    justify-content: start;
}

#wrapper article {
    padding: 32px;
}

#wrapper .font {
    color: #202025;
    text-align: center;
    font-size: 21px;
    margin-bottom: 30px;
}

#wrapper .center {
    text-align: center;
    margin: 25px 0 0;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 700;
    color: #202025;
    line-height: 1.1;
}
#wrapper h2 {
    margin-bottom: 15px;
    font-size: 30px;
        color: #202025;

}
#wrapper h3 {
    margin: 30px 0 20px;
    font-size: 30px;
    font-weight: 700;
    color: #202025;
    position: relative;
}

#wrapper h3 span {
    background: #fff;
    padding-right: 10px;
    position: relative;
}



#wrapper .icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
        color: #202025;

}



#wrapper .background p {
    text-align: center;
}




#wrapper .button {
    margin-top: -16px;
    display: flex;
    justify-content: center;
}



#wrapper .qr {
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 14px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #0d683a;
    font-size: 14px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.email-link {
      color: #e26b00; /* Orange */
      text-decoration: none; /* Unterstreichung weg */
      font-weight: normal;
    }

    .email-link:hover {
      text-decoration: underline; /* Unterstreichung beim Hover */
    }

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper .logo {
        padding: 20px 16px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        justify-content: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}