* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #636262;
    font-size: 17.5px;
}

#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 .flex {
    display: flex;
    justify-content: space-between;
}

#wrapper .flex > .one {
    width: 60%;
}

#wrapper .flex > .two {
    width: 35%;
    margin-top: 85px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px 48px;
    display: flex;
}

#wrapper article {
    padding: 20px 48px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper h1 {
    font-size: 26px;
    font-weight: 400;
    background: #fff;
    color: #e40e1b;
    margin-bottom: 10px;
    text-align: center;
}

#wrapper h2 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #e40e1b;
}

#wrapper h3 {
    display: inline-block;
    padding: 2px 10px;
    background: #e40e1b;
    color: #fff;
    font-weight: 500;
    border-radius: 20px;
    transition: 0.2s;
    margin-bottom: 10px;
}

#wrapper h4 {
   margin-bottom: 15px;
    font-size: 25.8px;
    font-weight: 300;
    color: #e40e1b;
}



#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .color strong {
    color: #e40e1b;
}
#wrapper strong {
    font-weight: 500;
}

#wrapper ul {
    margin: 0 0 20px 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: "\25A0";
    font-size: 14px;
    font-family: Arial, sans-serif;
    position: absolute;
    line-height: 1;
    left: 0;
    color: #636262;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 500px;

    margin: 0 auto; 
}

.contact-image {
    height: 150px;
    width: 150px;
    flex-shrink: 0;
    border-radius: 4px;
}

.contact-text {
    line-height: 1.4;
}

.contact-text h3 {
    margin: 0 0 6px 0;
    color: #e30613;
    font-size: 1.1rem;
}

.hint {
    font-size: 11px !important;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: #e30613;
    color: #fff !important;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

.company-section {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

/* Fakten-Zeile */
.company-facts {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 0.9rem;
    color: #777;
}

.fact-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e30613;
}

/* Trennlinie */
.company-section hr {
    margin: 25px 0;
    border: none;
    border-top: 1px solid #ccc;
}

/* Überschrift */
.company-section h3 {
    color: #e30613;
    margin-bottom: 15px;
}

/* Text */
.company-section p {
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

/* Weltkarte */
.world-map {
    margin-top: 25px;
    max-width: 100%;
    opacity: 0.8;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper .logo {
        padding: 16px;
    }

    #wrapper .flex {
        flex-direction: column;
    }

    #wrapper .flex > .one,
    #wrapper .flex > .two {
        width: 100%;
    }
    
    #wrapper .flex > .two {
        margin-top: 0;
    }
    
}
@media (max-width: 900px) {
    .contact-box {
        flex-direction: column;
        margin-left: 20px;
    }
    .company-section {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
}
}

@media (max-width: 700px) {
    .company-facts {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        justify-content: center;
    }

    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .flex {
        flex-direction: column;
    }

    #wrapper .flex > .one,
    #wrapper .flex > .two {
        width: 100%;
    }
}
