.img-box {
    background-color: #2ecc71; /* Grün */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 40px auto;

    border-radius: 15px;          /* Abgerundete Ecken */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Weicher Schatten */
}

.img-box img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;          /* Bild selbst ebenfalls abrunden (optional) */
}
.img-box-2 {
    background-color: #F5F8F6; /* weiss */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 15px;          /* Abgerundete Ecken */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Weicher Schatten */
}
