.about_me_section_container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    background-color: var(--primary-bg-color);
}
#idAbout_me_section .inline-logo {
    width: auto;
    vertical-align: middle;
}
#idAbout_me_section h2 .inline-logo {
    height: 1.2em;
    margin-left: 15px;
}
#idAbout_me_section p .inline-logo {
    height: 1.5em; /* Skaliert automatisch mit der Schriftgröße */
    margin: 0 5px;
}
.about_me_img {
    display: flex;
    justify-content: center;
}
.about_me_img img {
    object-fit: cover;
    margin: 1%;
    border-radius: 5px;
}
.text-secondary {
    color: var(--secondary-text-color);
}
.trust-strip {
    width: 80%;
    margin: 2% auto 0 auto;
    padding: 14px 18px;
    background-color: rgba(60, 60, 60, 0.5);
    font-family: 'Kodchasan';
    line-height: 150%;
    border-left: 5px solid var(--secondary-text-color);
    border-radius: 8px;
}

@media (min-width:801px) {
    .about_me_img {
        width: 40%;
    }
    .about_me_img img {
        width: 100%;
        box-shadow: 5px 5px 10px whitesmoke;
    }
    .about_me_section_text {
        width: 39%;
        margin: auto 20px;
    }
}

@media (max-width:800px) {
    .about_me_section_container {
        display: flex;
        flex-direction: column-reverse;
        z-index: -1;
    }
    .about_me_img {
        position: sticky;
        top: 120px;
        width: 100%;
        z-index: 0;
    }
    .about_me_img img {
        width: 86%;
        box-shadow: 0px 0px 5px whitesmoke;
    }
    .about_me_section_text {
        width: 85%;
        margin: auto;
        overflow: hidden;
        z-index: 1;
    }
}