.reviews-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
    /* Light grey background */
    border-top: 1px solid #e9ecef;
    margin-top: 3rem;
    border-radius: 12px;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.review-summary {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rating-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.rating-stars-summary {
    color: #f1c40f;
    font-size: 1.8rem;
    margin: 1rem 0;
}

.rating-count {
    color: #6c757d;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #f1c40f;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    color: #212529;
}

.author-info span {
    font-size: 0.85rem;
    color: #adb5bd;
}

.write-review-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color, #2c3e50);
    color: var(--primary-color, #2c3e50);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.write-review-btn:hover {
    background-color: var(--primary-color, #2c3e50);
    color: white;
}