.testimonial-section {
  background-image: url('../images/background_testimonial.png') !important;
  background: var(--CG-colors-Blue-Dark, #1a237e);
  background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
}

.testimonial-content {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.testimonial-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--CG-colors-Grey-Light, #f5f5f5);
  color: var(--CG-colors-Grey-Black, #000);
  font-family: var(--Typography-font-family-title, "Space Grotesk");
  font-size: 48px;
  font-weight: 500;
  margin-right: 20px !important;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
    text-align: left;
}

.testimonial-quote-mark {
      color: var(--CG-colors-Lime-Lime-5, #C4F222);
    font-family: var(--Typography-font-family-title, "Space Grotesk");
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 0px;
    margin: 0 0 16px 0;
}

.testimonial-quote {
  color: var(--CG-colors-Grey-White, #FFF);
  font-family: var(--Typography-font-family-title, "Space Grotesk");
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin: 0 0 24px 0;
}

.testimonial-author {
  color: var(--CG-colors-Highlights-White-80, rgba(255, 255, 255, 0.80));
  font-family: var(--Typography-font-family-body, Montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: left;
    justify-content: flex-start;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }
  
  .testimonial-content {
    padding: 0 20px;
  }
  
  .author-avatar {
    width: 120px;
    height: 120px;
    font-size: 32px;
  }
  
  .testimonial-quote-mark {
    font-size: 60px;
    line-height: 60px;
  }
  
  .testimonial-quote {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (min-width: 350px) and (max-width: 550px) {
  .testimonial-quote { font-size: 14px; }
}

.testimonial-grid { grid-template-columns: 1fr !important; }
  .testimonial { margin-bottom: 16px; }

