/* Reviews Section Styling */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
}
.reviews-section h2{
    text-align: center;
    font-size: 34px;
}
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-info h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.review-stars {
    margin-top: 5px;
    color: #FFD700;
}

.review-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        width: 90%;
        max-width: 400px;
    }
}