.reviews-section {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #f39c12;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffc107;
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.star.empty {
    color: #e0e0e0;
}

.rating-info {
    text-align: center;
}

.rating-count {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 5px;
}

.google-reviews-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 15px;
    color: white;
    margin-top: 30px;
}

.google-reviews-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.google-reviews-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #4285f4;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.google-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.google-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 20px;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
}