/* Testimonial wrapper */
.testimonial {
  background: #cf9f1a;
  padding: 48px 24px;
}

/* Paragraph text styling */
.testimonial p {
  color: white;
  font-size: 26px;
  /* text-xl */
  font-style: italic;
  text-align: center;
  max-width: 520px;
  /* max-w-3xl */
  margin: 0 auto;
  position: relative;
  line-height: 1.6;
}

.testimonial p::before {
  background-image: url("/assets/images/symbol/left-quotes.png");
  margin-right: 10px;
  padding-top: 30px;
}

.testimonial p:after {
  background-image: url("/assets/images/symbol/right-quotes.png");
  margin-left: 10px;
}

.testimonial p:after,
.testimonial p:before {
  content: "";
  position: relative;
  width: 25px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
}

/* Acction */

.actions-section {
  text-align: center;
  padding: 48px 0;
  /* py-12 */
  min-height: 10vh;
}

.actions-title {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 16px;
  /* mb-4 */
}

.actions-links {
  display: flex;
  flex-direction: column;
  /* flex-col */
  gap: 12px;
  /* gap-3 */
  font-weight: 500;
  /* font-medium */
  align-items: center;
  color: #ea580c;
  /* text-orange-600 */
}

.actions-links a {
  color: #ea580c;
  text-decoration: none;
}

.actions-links a:hover {
  color: #c2410c;
  /* text-orange-700 */
}


/* Footer */

footer {
  width: 100%;
  background: #4e4e4e;
  padding: 20px 0;
  text-align: center;
  color: #e5e7eb;
  /* text-gray-200 */
  font-size: 14px;
  /* text-sm */
}