/* 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-3 {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 25px;
}

.testimonials-3 .testimonial-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-3 .testimonial-side {
  background: var(--primary-color);
  padding: 30px;
  color: white;
}

.testimonials-3 .before-after {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonials-3 .status-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.testimonials-3 .status-label {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.testimonials-3 .symptom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonials-3 .symptom-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.testimonials-3 .symptom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.testimonials-3 .testimonial-main {
  padding: 30px;
}

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

.testimonials-3 .patient-header h3 {
  font-size: 24px;
  color: var(--primary-color);
}

.testimonials-3 .patient-age {
  color: var(--tertiary-color);
  font-size: 16px;
  margin-left: 10px;
}

.testimonials-3 .treatment-duration {
  color: var(--secondary-color);
  font-weight: bold;
}

.testimonials-3 .patient-quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--tertiary-color);
  margin: 0 0 30px 0;
  font-style: italic;
}

.testimonials-3 .success-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonials-3 .metric {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
}

.testimonials-3 .metric-value {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonials-3 .metric-label {
  color: var(--tertiary-color);
  font-size: 14px;
}
