@media (max-width: 640px) {
    /* Remove margins and padding from the image column */
    .uc-intro .t-col:first-child {
        margin: 0 !important;         /* Remove margin from the image column */
        padding: 0 !important;        /* Remove padding from the image column */
        width: 100% !important;       /* Ensure column is full width */
    }

    /* Adjust the text column (second column) to prevent overflow */
    .uc-intro .t-col:last-child {
        margin: 0 20px !important;    /* Add margin to the left and right of the text column */
        padding: 0 !important;        /* Remove any padding inside the text column */
        max-width: calc(100% - 40px) !important; /* Ensure text column doesn't overflow (adjusted for margin) */
        box-sizing: border-box !important;  /* Include margin and padding within the width */
    }

    /* Make sure the image in the first column takes full width */
    .uc-intro .t-col:first-child img {
        width


