#ROX-footer-banner {
    background: #f0f5f7;
    position: relative;
    display: flex;
}

    #ROX-footer-banner .row-4 {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 800px;
        margin: 0 auto;
    }

        #ROX-footer-banner .row-4 > div {
            text-align: center;
            padding: 20px;
            background: #f0f5f7;
            border-radius: 8px;
        }

        #ROX-footer-banner .row-4 img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            object-fit: contain;
        }

        #ROX-footer-banner .row-4 h3 {
            font-size: 16px;
            font-weight: 600;
            color: #007ba4;
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        #ROX-footer-banner .row-4 p {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.5;
            margin: 0;
        }

    #ROX-footer-banner > img:last-child {
        display: block;
        max-width: 700px;
        width: 100%;
        height: auto;
        margin-right: 100px;
    }

/* Responsive Styles */
@media (max-width: 1024px) {
    #ROX-footer-banner .row-4 {
        max-width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }

    #ROX-footer-banner > img:last-child {
        max-width: 500px;
        margin-right: 50px;
    }
}

@media (max-width: 768px) {
    #ROX-footer-banner {
        flex-direction: column;
        align-items: center;
    }

        #ROX-footer-banner .row-4 {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

            #ROX-footer-banner .row-4 > div {
                padding: 15px;
                flex: 1 1 calc(50% - 30px);
                min-width: 200px;
            }

        #ROX-footer-banner > img:last-child {
            max-width: 400px;
            margin-right: 0;
            margin-top: 20px;
        }
}

@media (max-width: 480px) {
    #ROX-footer-banner .row-4 {
        flex-direction: column;
        align-items: center;
    }

        #ROX-footer-banner .row-4 > div {
            flex: 1 1 100%;
            min-width: 100%;
            margin-bottom: 15px;
        }

        #ROX-footer-banner .row-4 img {
            width: 50px;
            height: 50px;
        }

        #ROX-footer-banner .row-4 h3 {
            font-size: 14px;
        }

        #ROX-footer-banner .row-4 p {
            font-size: 13px;
        }

    #ROX-footer-banner > img:last-child {
        max-width: 300px;
    }
}
