.google-review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.google-review-bubble {
    background: #f1f1f1;
    border-radius: 25px;
    padding: 15px 20px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    font-family: sans-serif;
	
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}
.google-review-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #f1f1f1 transparent transparent;
    display: block;
    width: 0;
}
.google-review-time {
    font-size: 12px;
    color: #666;
	
    margin-top: auto;
    text-align: right;
}
