.image-with-text-widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    align-items: center; 
}

ul
{
    padding: 0;
    list-style: inside;
}

.nettheam-image-column {
    flex: 0 0 100px; 
    padding-right: 20px; 
    text-align: left; 
    box-sizing: border-box; 
}

.nettheam-image-column img {
    max-width: 100%; 
    height: auto; 
}

.nettheam-text-column {
    flex: 1;
    text-align: left; 
    box-sizing: border-box; 
}

/* Reset some default styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Basic styling for the section */
.image-with-text {
    display: flex;
    align-items: center;
    /*background-color: #fa0000;*/
    padding: 20px;
}

/* Styling for the image column */
.nettheam-image-column {
    flex: 1; /* Adjust the flex property to control the width */
    padding: 20px;
    text-align: center;
}

.nettheam-image-column img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nettheam-text-column {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nettheam-text-column h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.nettheam-text-column p {
    font-size: 16px;
    margin-bottom: 20px;
}

.nettheam-text-column a {
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

.nettheam-text-column a:hover {
    background-color: #0056b3;
}

/* Style the list items */
.nettheam-text-column ul {
    list-style-type: none; /* Remove default list bullets */
    padding-left: 0; /* Remove default left padding for the list */
    align-items: center;
}

.nettheam-text-column li {
    margin-bottom: 10px; /* Adjust as needed for spacing between list items */
    display: flex; /* Use flexbox to align items vertically */
    align-items: center; /* Vertically center items */
}

.nettheam-text-column ul li::before {
    content: "\2022";
    color: rgb(231, 3, 33);
    font-size: 30px;
    margin-right: 10px;
    line-height: 2px;
}

@media screen and (max-width: 767px) {
    .image-with-text {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
    }

    .nettheam-image-column
    {
        display: block !important;
    }

    .nettheam-image-column img{
        width: 100% !important;
    }

    .image-column,
    .text-column {
        width: 100%; 
        padding: 10px; 
    }

    .nettheam-text-column, .nettheam-image-column
    {
        width: 100% !important;
    }
}