* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
      font-family: 'Figtree', sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    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 .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 10%;
    right: 6%;
    width: 13%;
    height: 30%;
}

#wrapper article {
    padding: 30px 125px 16px 60px;
}

#wrapper footer {
    padding: 0 147px 16px 60px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .min {
    color: #494848;
    text-align: justify;
    font-size: 13px;
}

#wrapper .link {
    border-bottom: 2px solid #ffffff;
    padding: 16px 0 10px;
    margin-bottom: 10px;
}

#wrapper .link a {
    color: #ffffff;
    letter-spacing: 3px;
    font-size: 29px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 38px;
    font-weight: 400;
    color: #1bbbea;
    line-height: 1.1;
}

#wrapper h1 span {
    font-size: 26px;
    color: #0a2b68;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #0a2b68;
    padding-top: 16px;
    transform: translate(-39px);
}

.arrow-title::before {
    content: "\2197";
    color: #1bbbea;
    font-size: 30px;
    margin-right: 8px;
    font-weight: bold;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #ffffff;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 55px 16px 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: "\2022";
    color: #0a2b68;
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper footer {
    background-color: #0a2b68;
    color: #ffffff !important;
    padding: 20px 50px;
}

.footer a {
    color: #fff !important; 
    text-decoration: none; /* Unterstreichung weg */
}

.footer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.footer-button {
    display: inline-flex;
    font-size: 13px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #0a2b68 !important;
    text-decoration: none;
    font-weight: 650;
    padding: 5px 20px;
    border-radius: 30px;
}

.footer-button .arrow {
    margin-left: 10px;
    font-size: 20px;
    color: #1bbbea;
}
@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper header a {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper article {
        padding: 16px 16px 0;
    }

    #wrapper .block {
        display: inline;
    }

    #wrapper h1 + p {
        width: auto;
    }

    #wrapper ul {
        margin-right: 0;
    }
}
