/* reviews.css */
.reviews-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 4px solid #c5a059;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.review-author {
    font-weight: bold;
    color: #0a2e36;
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-g {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center/contain;
}