.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonial-card {
  max-width: 516px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 82px;
  height: 82px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  width: 40px;
  height: 40px;
}

.testimonial-content {
  margin-top: 40px;
}

.testimonial-text {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #000000;
  text-align: center;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 6px 14px 27px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.author-info {
  text-align: center;
}

.author-name {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #23B100;
  margin-bottom: 4px;
}

.author-title {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #23B100;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 24px;
    margin: 0 20px;
  }
  
  .testimonial-quote {
    left: 24px;
    width: 60px;
    height: 60px;
  }
  
  .quote-icon {
    width: 30px;
    height: 30px;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 12px;
  }
  
  .author-avatar {
    width: 100px;
    height: 100px;
  }
  
  .testimonial-text {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
  }
  
  .author-avatar {
    width: 80px;
    height: 80px;
  }
  
  .author-name,
  .author-title {
    font-size: 14px;
    line-height: 18px;
  }
}
