.testimonial-card-wrapper {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    display: flex;
    background: #2c3e50; /* dark background */
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
    align-items: center;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #FFD700; /* yellow stars */
    font-size: 16px;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: bold;
    color: #FFD700; /* author highlight */
    font-size: 14px;
}
