* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: #3F2E56;
  padding: 15px 0;
  color: white;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #C49A6C;
}

/* Header */
.page-header {
  background-color: #FAF7F2;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #3F2E56;
}

.page-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background-color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #F9F4EF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.animate {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

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

.text-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3F2E56;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.review-meta {
  font-size: 0.85rem;
  color: #888;
}

.stars {
  color: gold;
  font-size: 1rem;
  margin-top: 5px;
}

.quote {
  font-style: italic;
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.review-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: #3F2E56;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-content p {
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .quote {
    font-size: 1rem;
  }
}
