/* Make the row full-width and center the content */
.et_pb_row_3 {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;   /* Centers child horizontally */
    align-items: center;       /* (Optional) center vertically */
    margin: 0 auto;
}

/* Make the column fill full width but keep content centered */
.et_pb_column_4 {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;  /* Center inner content */
}

/* Keep image from scaling up and center it */
.et_pb_image_1 img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
    min-width: 200px; /* Prevent it from shrinking below this */
}

.et_pb_image_1 {
    display: flex;
    justify-content: center;
}
