.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.testimonial {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fafafa;
}

.testimonial img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-content {
  flex: 1;
}

.testimonial-name {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.testimonial-job {
  color: #6a6969;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1.15rem;
  padding: 10px 0px;
}

@media (max-width: 768px) {
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial img {
    margin-bottom: 1rem;
  }

  .testimonial-content {
    width: 100%;
  }
}
