#testimonials {
  background-color: #f0f2f5;
}


.testimonial {
  background-color: transparent;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 30%;
  transition: transform 0.2s ease;
  height: 100%;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-author {
  text-align: right;
  font-weight: bold;
  color: var(--primary-color);
}
.testimonial-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.testimonial-header p{
    color: rgb(148, 125, 186);
}