/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.testimonials-2 {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 25px;
}

.testimonials-2 .testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonials-2 .testimonial-item {
  background: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 15px;
}

.testimonials-2 .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.testimonials-2 .patient-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonials-2 .patient-initial {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.testimonials-2 .patient-details h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.testimonials-2 .patient-location {
  font-size: 14px;
  opacity: 0.8;
}

.testimonials-2 .pain-level {
  text-align: right;
}

.testimonials-2 .pain-score {
  font-size: 32px;
  font-weight: bold;
}

.testimonials-2 .testimonial-body {
  margin-bottom: 25px;
}

.testimonials-2 .testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonials-2 .key-improvements {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonials-2 .improvement-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}
