 #testimonials {
  background-color: var(--primary-color);
}

.testimonial-title{
text-align:center;
color: white;
}

.testimonial {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 30%;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-author {
  text-align: left;
  font-weight: bold;
  color: var(--primary-color);
}

.testimonial::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../../images/quote.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.testimonial-avatar {
  display: none;
} 
.testimonial-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;

}
.testimonial-name, .testimonial-age{
  margin: 0;
}
.testimonial-name{
  color: var(--primary-color);
  font-weight: 700;
}
.testimonial-age{
  font-weight: 300;
}
.testimonial-header p{
    color: var(--primary-color);
}