:root {
    --green: #006b35;
    --text: #1d1d1b;
    --yellow: #f2c300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow: hidden;
}

.wrapper {
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Linke Seite */

.content {
    width: 65%;
    height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 60px;
}

.content > * {
    width: 100%;
    max-width: 800px;
}

.logo {
    width: 385px;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.claim {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 50px;
}

.questions {
    list-style: none;
    text-align: center;
    margin-bottom: 50px;
}

.questions li {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.questions li::before {
    content: "• ";
    color: var(--green);
    font-weight: bold;
}

.contact-box {
    border: 6px solid var(--yellow);
    border-radius: 24px;

    padding: 30px 40px;

    background: #fff;
}

.contact-box p {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-box a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
}

.contact-box a:hover {
    color: var(--green);
}

/* Rechte Bildspalte */

.image {

    width: 35%;

    height: 100vh;

    flex-shrink: 0;

    background-image: url("b1.jpg");

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center 15%;

}

/* Tablet */

@media (max-width: 1200px) {

    .content {
        width: 60%;
        padding: 40px;
    }

    .image {
        width: 40%;
    }

    .claim {
        font-size: 1.6rem;
    }

    .questions li {
        font-size: 1.3rem;
    }

    .contact-box a {
        font-size: 1.5rem;
    }
}

/* Mobile */

@media (max-width: 900px) {

    body {
        overflow: auto;
    }

    .wrapper {
        flex-direction: column;
        height: auto;
    }

    .image {
        width: 100%;
        height: 320px;
        order: -1;

        background-position: center center;
    }

    .content {
        width: 100%;
        height: auto;
        min-height: auto;

        padding: 40px 25px;
    }

    .logo {
        width: 280px;
    }

    .claim {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }

    .questions {
        margin-bottom: 35px;
    }

    .questions li {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .contact-box {
        padding: 25px;
    }

    .contact-box p {
        font-size: 1rem;
    }

    .contact-box a {
        font-size: 1.2rem;
        word-break: break-word;
    }
}