.widget-side-banner {
    background-image: url('https://brianbanksfree.com/wp-content/uploads/2019/07/Untitled-design-35-e1733686270625.png');
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.video-container {
    display: inline-block;
    width: 32%; /* Adjust as needed to fit three videos side by side */
    margin-right: 2%; /* Space between videos */
    vertical-align: top;
}

.video-container:last-child {
    margin-right: 0; /* Remove the margin on the last video */
}.image-text-wrapper {
    display: flex;
    justify-content: center; /* Center the blocks horizontally */
    gap: 40px; /* Space between the two blocks */
    flex-wrap: wrap; /* Stack blocks on smaller screens */
    max-width: 1200px; /* Limit the overall width */
    margin: 0 auto; /* Center the wrapper on the page */
}

/* General styles for larger screens */
.image-text-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* General styles for larger screens */
.image-text-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap; /* Keep content side by side on larger screens */
    max-width: 1200px;
    margin: 0 auto;
}

.image-with-text-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 45%; /* Keep blocks at 45% width for side-by-side layout */
    box-sizing: border-box;
}

.image-with-text-image img {
    width: 200px; /* Fixed image width */
    height: 300px; /* Fixed image height */
    object-fit: cover; /* Ensure image covers the dimensions */
}

.image-with-text-content {
    text-align: left; /* Align text to the left */
}

.image-with-text__heading {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333; /* Darker color for readability */
}

.image-with-text__list {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.image-with-text__list li {
    font-size: 1.1em;
    margin: 5px 0;
    position: relative;
    padding-left: 25px; /* Space for the custom bullet */
}

.image-with-text__list li::before {
    content: '❖'; /* Fancy bullet point */
    font-size: 1.2em;
    color: #ff4500; /* Custom bullet color */
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(2px); /* Adjust bullet position */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .image-text-wrapper {
        flex-wrap: wrap; /* Allow content to wrap on smaller screens */
        gap: 20px; /* Reduce the gap between blocks */
        padding: 0 15px; /* Add padding for better appearance */
    }

    .image-with-text-container {
        flex-direction: column; /* Stack the image and text vertically */
        align-items: center; /* Center items on smaller screens */
        max-width: 100%; /* Make blocks full width */
        text-align: center; /* Center text for better readability */
    }

    .image-with-text-image img {
        width: 100%; /* Make the image take full width */
        height: auto; /* Adjust height to maintain aspect ratio */
        max-width: 300px; /* Limit the maximum width of the image */
    }

    .image-with-text-content {
        text-align: center; /* Center text on smaller screens */
    }
}



.gs-logo-container .gs-logo img {
    width: 100px !important; /* Adjust width as needed */
    height: auto !important; /* Maintain aspect ratio */
    max-width: 100% !important; /* Ensure responsiveness */
}