.lookaa-testimonials {
  padding: 40px 20px;
  background: #0f0f0f;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

.lookaa-testimonials h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.lookaa-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.lookaa-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.lookaa-card:hover {
  transform: translateY(-5px);
  background: #222;
}

.lookaa-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.lookaa-card h3 {
  margin: 8px 0 5px;
  font-size: 16px;
}

.lookaa-card p {
  font-size: 14px;
  opacity: 0.85;
}

.stars {
  margin: 6px 0;
  color: gold;
  font-size: 18px;
}

.stars i {
  color: gold;
  margin: 0 2px;
}