.speech-bubble {
    position: relative;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.speech-bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 15px 15px 0;
    border-color: #f0f0f0 transparent;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -15px;
    left: 20px;
}

.testimonial-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    float: left;
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* CSS */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px; /* Adjust the gap as needed */
}

.grid-row {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 4px; /* Adjust the margin as needed */
}

.grid-column {
    flex: 0 0 calc(25% - 4px); /* 4 columns with 10px gap */
    max-width: calc(25% - 4px);
    text-align: center;
}


/* CSS for the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
