.testimonials {
  background-color: #73381d; /* full-width background color */
  padding: 2rem 0; /* vertical padding only */
  font-family: "Josefin Sans", sans-serif;
font-size:12pt;
}

.testimonials-inner {
  max-width: 600px;  /* limit content width */
  margin: auto;      /* center content */
  color: #fff;       /* white text for contrast */
}

.testimonials h2 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-container {
  position: relative;
}

.testimonial-item {
  display: none;
  background-color: #73381d;
  padding: 1.5rem;
  border-radius: 8px;
}

.testimonial-item.active {
  display: block;
}

.testimonial-item p {
  font-size: 12pt;
  color:#ffffff;
  line-height: 1.5;
}

.testimonial-item footer {
  margin-top: 1rem;
  font-size: 20pt;
  color: #ffffff;
  text-align: right;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.controls button {
  padding: 0.5rem 1rem;
  border: none;
  background: #000000;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.controls button:focus {
  outline: 2px solid #007acc;
}

.controls button:hover {
  background: #555;
}