.testimonials_section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e0e7ff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-grain)"/></svg>');
  pointer-events: none;
}

.testimonials_section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials_section .container p {
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.6;
}

.testimonials_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.testimonials_title_text {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testimonials_title_text svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.testimonials_title_text:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.testimonials_title_text h2 {
  font-size: 32pt;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3748;
}

.testimonials_title_text span {
  color: #7d53de;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.testimonials_grid_card {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonials_grid_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7d53de 0%, #9c7ae8 100%);
}

.testimonials_grid_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonials_grid_card_left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonials_grid_card_left img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(125, 83, 222, 0.2);
  transition: all 0.3s ease;
}

.testimonials_grid_card:hover .testimonials_grid_card_left img {
  border-color: rgba(125, 83, 222, 0.4);
  transform: scale(1.05);
}

.testimonials_grid_card_left span {
  margin: 0;
  color: #7d53de;
  font-weight: 700;
  font-size: 16px;
}

.testimonials_grid_card > div:last-child {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  position: relative;
}

.testimonials_grid_card > div:last-child::before {
  content: '"';
  font-size: 48px;
  color: rgba(125, 83, 222, 0.3);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
}

.testimonials_cta_button {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.testimonials_cta_button .btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(125, 83, 222, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testimonials_cta_button .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.testimonials_cta_button .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125, 83, 222, 0.4);
}

.testimonials_cta_button .btn:hover::before {
  left: 100%;
}

@media screen and (max-width: 1024px) {
  .testimonials_grid {
    gap: 25px;
  }

  .testimonials_grid_card {
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials_section {
    padding: 50px 20px;
  }

  .testimonials_title {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }

  .testimonials_title_text h2 {
    font-size: 26pt;
  }

  .testimonials_section .container p {
    font-size: 16px;
    margin-top: 15px;
  }

  .testimonials_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .testimonials_grid_card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .testimonials_grid_card_left {
    margin-bottom: 15px;
  }

  .testimonials_grid_card_left img {
    width: 60px;
    height: 60px;
  }

  .testimonials_cta_button {
    margin-top: 50px;
  }

  .testimonials_cta_button .btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .testimonials_section {
    padding: 40px 15px;
  }

  .testimonials_title_text h2 {
    font-size: 22pt;
  }

  .testimonials_section .container p {
    font-size: 15px;
    margin-top: 12px;
  }

  .testimonials_grid {
    gap: 15px;
    margin-top: 30px;
  }

  .testimonials_grid_card {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .testimonials_grid_card_left {
    margin-bottom: 12px;
  }

  .testimonials_grid_card_left img {
    width: 50px;
    height: 50px;
  }

  .testimonials_grid_card_left span {
    font-size: 14px;
  }

  .testimonials_grid_card > div:last-child {
    font-size: 14px;
  }

  .testimonials_cta_button {
    margin-top: 40px;
  }

  .testimonials_cta_button .btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
}