/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Wrapper */
.testimonial-section {
  font-family: 'Open Sans', sans-serif;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* Grid Container */
.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 300px; 
}

.testimonial-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 15px;
  line-height: 25px;
  color: #0f0f0f;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* Image */
.testimonial-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-top: 1.5rem;
  object-fit: cover;
}

/* Testimonial Details */
.testimonial-details {
  margin-top: 1rem;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  color: #212529;
}

.testimonial-event {
  font-size: 12px;
  line-height: 1.75em;
  color: #657182;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
}
