.image-text-row {
    display: flex;          /* Use flexbox for alignment */
    align-items: center;    /* Vertically center items */
    margin-bottom: 15px;    /* Space between rows */
    gap: 20px;              /* Space between image and text */
}

.image-text-row img {
    width: 150px;           /* Fixed width as specified */
    height: auto;           /* Maintain aspect ratio */
    flex-shrink: 0;         /* Prevent image from shrinking */
}

.image-text-row .text-content {
    flex: 1;                /* Allow text to take remaining space */
}