.google-review {
padding: 16px;
background-color: #ffffff;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
}
.google-review img {
width: 64px;
height: 64px;
border-radius: 50%;
margin-right: 16px;
}
.google-review h3 {
font-size: 1.25rem;
font-weight: 700;
}
.google-review .stars {
color: #FFD700;
}
.google-review p {
font-size: 0.875rem;
margin-top: 8px;
} #google-reviews-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.google-review {
flex-basis: calc(33.333% - 20px);
margin: 10px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
border-radius: 8px;
} @media (max-width: 768px) {
.google-review {
flex-basis: calc(50% - 20px);
}
} @media (max-width: 480px) {
.google-review {
flex-basis: 100%;
}
}