* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Source Sans 3", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6; /* mehr Zeilenhöhe für bessere Lesbarkeit */
}

#wrapper {
    max-width: 900px;
    margin: 32px auto;          /* mehr Abstand nach außen */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    background-size: auto 100%; /* Höhe an Wrapper anpassen */
    padding: 40px 60px;         /* großzügiger Innenabstand */
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 3% 6% 2%; /* mehr Platz, auch nach unten */
}

#wrapper footer {
    padding: 2% 6%;    /* mehr Luft unten */
    position: relative;
}

#wrapper footer img {
    position: absolute;
    bottom: 40px;
    right: 5%;
    width: 110px;
}

#wrapper p {
    margin-bottom: 20px; /* mehr Abstand zwischen Absätzen */
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 32px;
    font-weight: 700;
    font-family: "PT Sans", sans-serif;
    margin-bottom: 24px; /* mehr Abstand nach unten */
    text-align: center;
}

#wrapper h3 {
    margin: 24px 0 12px; /* Abstand oben und unten */
    font-size: 21px;
    font-weight: 700;
        color: #22b891;

}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #22b891;
    text-decoration: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: none;
        padding: 20px; /* auf kleinen Screens nicht zu eng */
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 540px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }

    #wrapper footer img {
        position: static;
        margin-top: 20px;
    }
}
