.content-wrapper {
            display: flex;
            flex-wrap: wrap;
        }

        .points {
            flex: 1;
            padding-right: 20px;
            /* Adjust as needed */
        }

        .image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image img {
            max-width: 100%;
            /* Ensures the image is responsive */
            height: auto;
        }