.image-row {
    float: left;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 30px 20px 0;
    flex-wrap: wrap;
    width: 350px;
}

.image-row img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.about-text {
    overflow: hidden;
}

@media (max-width: 768px) {
    .image-row {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
        flex-direction: column;
        align-items: center;
    }

    .image-row img {
        width: 100%;
        max-width: 300px;
    }
}
