* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #003e71;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 850px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}
#wrapper .bottom {
    margin-bottom: 45px;
}
#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

#wrapper article {
    padding: 20px 40px;
}

#wrapper .big {
    font-size: 20px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .flex div {
    width: 48%;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px -40px;
    font-size: 30px;
    font-weight: 700;
    padding: 20px 40px;
    text-align: center;
    color: #62b9e9;
}

#wrapper h1 em {
    font-weight: 400;
    font-size: 24px;
}

#wrapper h2 {
    color: #003e71;
    font-size: 24px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #003e71;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #003e71;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 4px;
    color: #707070;
}

#wrapper ul li:before {
content: '\25AA';
    font-size: 21px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
    color: #575756;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

.apply-btn {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #003e71 !important; /* Textfarbe */
    text-decoration: none;
    border: 2px solid #003e71; /* Rahmenfarbe */
    background: #ffffff;
    transition: 0.25s ease;
}

/* Die kleine Ecke oben rechts */
.apply-btn::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 0;
    height: 0;
    border-top: 18px solid #003e71;  /* Farbe der Ecke normal */
    border-left: 18px solid transparent;
    transition: 0.25s ease;
}

/* Hover-Effekt */
.apply-btn:hover {
    border-color: #d82712; /* Rot */
    color: #d82712;
}

.apply-btn:hover::after {
    border-top-color: #d82712; /* Ecke wird rot */
}


@media (max-width: 849px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper .logo {
        padding: 16px;
    }
}

@media (max-width: 639px) {
    #wrapper .flex div {
        width: 100%;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #wrapper h2 {
        text-align: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}