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

.testimonials-1 .testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-1 .testimonials-header h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.testimonials-1 .testimonial-card {
  position: relative;
  background: var(--primary-color);
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  color: white;
}

.testimonials-1 .testimonial-image {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.testimonials-1 .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-1 .testimonial-content {
  padding-right: 120px;
}

.testimonials-1 .patient-info {
  margin-bottom: 20px;
}

.testimonials-1 .patient-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: white;
}

.testimonials-1 .patient-age {
  font-size: 16px;
  opacity: 0.9;
  color: white;
}

.testimonials-1 .condition-tag {
  display: inline-block;
  background: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 10px;
  color: white;
}

.testimonials-1 .success-quote {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 25px 0;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  font-style: italic;
  color: white;
}

.testimonials-1 .improvement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonials-1 .improvement-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

@media (max-width: 968px) {
  .testimonials-1 .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-1 .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-1 .testimonial-card {
    padding: 25px;
  }

  .testimonials-1 .testimonial-image {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
  }

  .testimonials-1 .testimonial-content {
    padding-right: 0;
  }
}
