* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
}
hr {
  margin: auto;
  padding-bottom: 20px;
}
.hero-3 {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: hsl(38, 22%, 93%);
  padding-bottom: 80px;
}
.container {
  width: 100%;
  margin: auto;
  padding-top: 20px;
}
.testimonialCon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
}

.testimonial-container {
  max-width: 600px;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.testimonial-container2 {
  max-width: 600px;
  text-align: center;
  background-color: #ebadd3;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.testimonial-container3 {
  max-width: 600px;
  text-align: center;
  background-color: #b6e4f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.author-image {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  padding: 0 10px;
}

.testimonial-author {
  font-size: 18px;
  font-weight: bold;
  color: #444;
}

.author-title {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-container {
      padding: 20px;
  }

  .testimonial-text {
      font-size: 14px;
  }

  .author-image {
      width: 70px;
      height: 70px;
  }
}
