.ueber-mich-wrapper {
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.ueber-mich-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 60px 40px;
    max-width: 1000px;
    width: 100%;
}

.ueber-mich-box h1.Leon {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.ueber-mich-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Überschriften innerhalb des Textes */
.ueber-mich-content strong {
    display: block;
    font-size: 28px;  /* größer als normaler Text */
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Bild floaten lassen */
.ueber-mich-image {
    float: left;
    width: 250px;
    margin: 0 20px 20px 0;
}

.ueber-mich-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Clearfix für Container */
.ueber-mich-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive */
@media (max-width: 1024px) {
    .ueber-mich-box {
        padding: 40px 20px;
    }

    .ueber-mich-box h1.Leon {
        font-size: 28px;
    }

    .ueber-mich-content strong {
        font-size: 24px;
    }

    .ueber-mich-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ueber-mich-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}
