main h1,h2,h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top:0;
}
.text-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#slideshow-image {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow:0 4px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-box {
  background-color: #5d5c3c; /* Olive green similar to screenshot */
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.stars {
  font-size: 24px;
  color: #ffd700; /* Gold/yellow stars */
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-author {
  font-style: italic;
  color: #e0e0e0;
  font-weight: bold;
}
.testimonial-title {
  background: linear-gradient(to right, #dfdddd, #5d5c3c);
  color: #fafafa;
  font-family: 'Georgia', serif;
  font-size: 24px;
  padding: 12px 20px;
  border: 2px solid #5b5a5c;
  border-radius: 15px;
  text-align: center;
  margin: 0 auto 30px auto; /* center and add bottom space */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 500px;
  width: 90%;
}


.testimonial-title::before,
.testimonial-title::after {
  content: "🌼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.testimonial-title::before {
  left: 10px;
}

.testimonial-title::after {
  right: 10px;
}



