body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 1rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

h1 {
  text-align: center;
  margin: 2rem 0;
  color: #333;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.customer-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff7f50;
}

.star-rating {
  color: #FFD700;
}

.review-text {
  margin-top: 1rem;
  color: #555;
}

footer {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  text-align: center;
  text-decoration: none;
  color: #ff7f50;
  font-weight: bold;
}