.whiteround {
    padding: 20px;
    background-color: #fff;
    border-radius: 20px; /* Optional rounded corners */
 margin-bottom: 30px; 
 box-shadow: 3px 3px 20px rgba(0,0,0,.1);
}
}

.row-fluid {
    display: flex; /* Flexbox to handle alignment */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Even spacing between image and text */
    flex-wrap: wrap; /* Ensure content wraps on smaller screens */
}
.span2, .span10 {
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center;
}

.rounded-image img {
    width: 60px!important;
    height: 60px!important;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row-fluid {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }
}
