 body {
   font-family: 'Inter', sans-serif;
 }

 h1,
 h2,
 h3 {
   font-family: 'Ultra', serif;
   color: #463016;
 }

 .text-ultra {
   font-family: 'Ultra', serif;
 }

 .shadow-coffee-brown {
   box-shadow: 0 10px 15px -3px #463016, 0 4px 6px -2px #463016;
 }

 /* Styles for the carousel */
 .testimonial-carousel .testimonial-item {
   display: none;
   /* Added transition for smooth fade effect */
   transition: opacity 0.5s ease-in-out;
   opacity: 0;
 }

 .testimonial-carousel .testimonial-item.active {
   display: block;
   opacity: 1;
 }