/* עיצוב ביקורות */
.reviews {
    text-align: center;
    padding: 50px 10px;
}

.reviews h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0077b6;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.review-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    font-size: 2.5em;
    color: #0077b6;
    margin-bottom: 8px; /* Spacing between icon and name */
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center align name and stars */
}

.review-rating {
    margin-top: 5px;  /* Space between name and stars */
}

.review-rating i {
    color: #ffb703;
    font-size: 1.2em;  /* Slightly bigger stars for better visibility */
}

.review-text {
    font-size: 1.1em;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

/* רספונסיביות */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: center;
    }

    .review-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

