/* ========================================
   TRUST SECTION - "VERTRAUEN IST GUT. ÜBERRASCHUNG IST BESSER."
   Premium Trust Pillars Design mit Elegantem Hellem Hintergrund
   ======================================== */

/* ======================================== 
   SECTION CONTAINER - ELEGANTER HELLER HINTERGRUND
   ======================================== */
.trust-section {
  padding: var(--space-2xl) 0 var(--space-8xl);
  background: #FCFCFC;
  position: relative;
  overflow: hidden;
}

/* .trust-section::before entfernt für einheitliche Farbe */

/* .trust-section::after entfernt für einheitliche Farbe */

/* @keyframes particleDance entfernt - nicht mehr benötigt */

.trust-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* ======================================== 
   TRUST HEADER - ELEGANTE DUNKLE TEXTE AUF HELLEM HINTERGRUND
   ======================================== */
.trust-header {
  text-align: center;
  margin-bottom: var(--space-6xl);
  position: relative;
}

.trust-header h2 {
  color: var(--color-gray-900);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  /* Uses .section-title from typography.css for consistency */
}

.trust-header h2 .text-accent {
  color: var(--color-accent);
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.15);
  position: relative;
}

/* GLOW EFFECT DEAKTIVIERT - VERHINDERT UNERWÜNSCHTE TEXT-DUPLIKATION */
/*.trust-header h2 .text-accent::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary);
  filter: blur(8px);
  opacity: 0.3;
  z-index: -1;
  animation: accentGlow 4s ease-in-out infinite;
}*/

/* ACCENT GLOW ANIMATION ENTFERNT - NICHT MEHR BENÖTIGT */
/*@keyframes accentGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.01);
  }
}*/

.trust-header .section-subtitle {
  /* Uses global .section-subtitle styles for consistency */
  max-width: 600px;
  margin: 0 auto;
  font-weight: var(--font-semibold);
}

/* Desktop: zweite Zeile nicht umbrechen und mehr Breite zulassen */
@media (min-width: 1024px) {
  .trust-header .section-subtitle {
    max-width: 1000px;
  }
  .trust-header .section-subtitle .nowrap {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .trust-header .section-subtitle .trust-line-mobile {
    display: block;
  }
  .trust-header .section-subtitle .nowrap {
    white-space: normal; /* Auf Mobile: Umbruch zulassen */
  }
}

/* Decorative Line Under Header */
.trust-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-accent) 30%, 
    var(--color-primary) 70%, 
    transparent 100%);
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}



/* ======================================== 
   TESTIMONIAL HIGHLIGHT - SINGLE TESTIMONIAL DESIGN
   ======================================== */
.testimonial-highlight {
  margin-top: var(--space-5xl);
  text-align: center;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-highlight blockquote {
  position: relative;
  padding: var(--space-4xl) var(--space-3xl);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-2xl);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 1);
  transition: all var(--transition-slow);
  overflow: hidden;
}

/* ALLE HINTERGRUND-ANFÜHRUNGSZEICHEN KOMPLETT DEAKTIVIERT */

/* Überschreibt ALLE globalen blockquote::before Regeln */
.trust-section blockquote::before,
.trust-section .testimonial-highlight::before,
.trust-section .testimonial-highlight blockquote::before {
  content: none !important;
  display: none !important;
}

/* Sicherheitshalber auch für Media Queries */
@media (max-width: 768px) {
  .trust-section blockquote::before,
  .trust-section .testimonial-highlight::before,
  .trust-section .testimonial-highlight blockquote::before {
    content: none !important;
    display: none !important;
  }
}

/* Testimonial Text */
.testimonial-highlight blockquote p {
  font-size: var(--text-2xl);
  color: var(--color-gray-900);
  line-height: var(--leading-relaxed);
  font-weight: var(--font-medium);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

/* Author Citation */
.testimonial-highlight cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

.testimonial-highlight cite strong {
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: var(--font-bold);
  text-shadow: 0 1px 2px rgba(97, 0, 0, 0.2);
}

.testimonial-highlight cite span {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  font-weight: var(--font-medium);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.testimonial-highlight:hover blockquote {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(255, 215, 0, 0.3);
}

/* ======================================== 
   TESTIMONIALS GRID - 3 PREMIUM KUNDENBEWERTUNGEN
   ======================================== */
   
/* iPad-spezifische Anpassungen (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonials-slider {
    overflow: visible;
    margin: var(--space-4xl) 0 0;
    padding: 0;
  }
  
  .testimonials-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    transform: none !important;
    transition: none !important;
  }
  
  /* Drittes Element zentriert unter den ersten beiden */
  .testimonial-slide:nth-child(3) {
    grid-column: 1 / 3;
    max-width: 380px;
    margin: var(--space-xl) auto 0;
  }
  
  /* Testimonial-Karten kompakter machen */
  .testimonial-card {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    min-height: 280px;
  }
  
  .testimonial-card blockquote {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    flex-grow: 1;
    margin-bottom: var(--space-lg);
  }
  
  /* Mobile Elemente auch auf iPad verstecken */
  .testimonials-scroll-indicators,
  .testimonials-slider .trust-swipe-hint {
    display: none !important;
  }
}

/* Desktop Version (3 Spalten nebeneinander - kein Slider) */
@media (min-width: 1025px) {
  .testimonials-slider {
    overflow: visible;
    margin: var(--space-5xl) 0 0;
    padding: 0;
  }
  
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    transform: none !important;
    transition: none !important;
  }
  
  .testimonial-slide {
    width: 100%;
    padding: 0;
  }
  
  /* Mobile Elemente auf Desktop verstecken */
  .testimonials-scroll-indicators,
  .testimonials-slider .trust-swipe-hint {
    display: none !important;
  }
  
  .testimonial-card {
    max-width: none;
  }
}

/* Individual Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(255, 215, 0, 0.1);
  /* touch-action geerbt (auto) für kombinierte Gesten */
}

/* ======================================== 
   TESTIMONIAL HEADER - AVATAR + RATING
   ======================================== */
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

/* Customer Avatar Container */
.customer-avatar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-base);
}

.avatar-placeholder span {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-secondary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* VERIFIED BADGE - KOMPAKT UND ELEGANT */
.verified-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%, 
    var(--color-accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.verified-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-primary-dark);
  stroke-width: 2.5;
  fill: none;
}

.testimonial-card:hover .avatar-placeholder {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover .verified-badge {
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
}

/* Featured Middle Card */
.testimonial-card.featured {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.95) 0%, 
    rgba(255, 193, 7, 0.90) 100%);
  border: 3px solid rgba(255, 215, 0, 0.9);
  transform: scale(1.05);
  z-index: 2;
}

/* Premium Top Accent Line */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-accent) 50%,
    var(--color-primary) 100%);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.testimonial-card.featured::before {
  background: linear-gradient(90deg, 
    var(--color-primary-dark) 0%, 
    var(--color-accent) 30%,
    var(--color-accent-light) 50%,
    var(--color-accent) 70%,
    var(--color-primary-dark) 100%);
  transform: scaleX(1);
  height: 3px; /* Etwas schmaler für eleganteres Aussehen */
}

/* Rating Stars - Removed */
.testimonial-rating {
  display: none;
}

/* Quote Content */
.testimonial-card blockquote {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-800);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-xl);
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card.featured blockquote {
  color: var(--color-primary-darker);
  font-weight: var(--font-semibold);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* SUBTLE QUOTE MARKS DEAKTIVIERT - KEINE HINTERGRUND QUOTES MEHR */
/*.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 60px;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card.featured blockquote::before {
  color: var(--color-primary);
  opacity: 0.2;
}*/

/* Author Citation */
.testimonial-card cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.testimonial-card cite strong {
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: var(--font-bold);
  text-shadow: 0 1px 2px rgba(97, 0, 0, 0.1);
}

.testimonial-card.featured cite strong {
  color: var(--color-primary-darker);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.testimonial-card cite span {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  font-weight: var(--font-medium);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

.testimonial-card.featured cite span {
  color: var(--color-primary-dark);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Premium Hover Effects */
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(255, 215, 0, 0.2);
}

.testimonial-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 12px 30px rgba(255, 215, 0, 0.3);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Floating Animation for Featured Card */
.testimonial-card.featured {
  animation: featuredFloat 6s ease-in-out infinite;
}

@keyframes featuredFloat {
  0%, 100% {
    transform: translateY(0) scale(1.05);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

/* ======================================== 
   RESPONSIVE DESIGN - MOBILE OPTIMIERUNG
   ======================================== */

/* Large Desktop */
@media (min-width: 1200px) {

}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .trust-section {
    padding: var(--space-7xl) 0;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .trust-section {
    padding: var(--space-6xl) 0;
  }
  
  /* TESTIMONIALS - HORIZONTAL SWIPE */
  .testimonials-slider {
    position: relative;
    width: 100%;
    margin: var(--space-4xl) 0 0;
    padding: var(--space-lg) 0;
  }
  
  .testimonials-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
    -webkit-overflow-scrolling: touch; /* iOS inertial scrolling */
    touch-action: pan-x pan-y; /* beide Richtungen zulassen */
    overscroll-behavior-x: contain; /* Scroll-Chaining verhindern */
    /* Scrollbar verstecken */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .testimonials-track::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-slide {
    flex: 0 0 85vw;
    max-width: 400px;
    scroll-snap-align: center;
  }
  
  .testimonial-slide:first-child {
    scroll-snap-align: start;
  }
  
  .testimonial-slide:last-child {
    scroll-snap-align: end;
    margin-right: var(--space-xl);
  }
  
  .testimonial-card {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }
  
  /* Scroll-Indikatoren */
  .testimonials-scroll-indicators {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    padding: var(--space-xl) 0;
    width: 100%;
  }
  
  .testimonials-scroll-indicators .scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(97, 0, 0, 0.25);
    border: 2px solid rgba(97, 0, 0, 0.15);
    transition: all var(--transition-base);
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .testimonials-scroll-indicators .scroll-dot.active {
    background: var(--color-accent);
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  }
  
  /* Wisch-Hinweis für Trust Section */
  .testimonials-slider .trust-swipe-hint {
    position: absolute;
    right: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    opacity: 0.9;
    animation: trustSwipeHint 2s ease-in-out infinite;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-primary);
    box-shadow: 
      0 4px 20px rgba(97, 0, 0, 0.3),
      0 0 0 4px rgba(97, 0, 0, 0.1);
    backdrop-filter: blur(4px);
  }
  
  @keyframes trustSwipeHint {
    0%, 100% { 
      opacity: 0.8; 
      transform: translateY(-50%) translateX(0) scale(1); 
    }
    50% { 
      opacity: 1; 
      transform: translateY(-50%) translateX(-12px) scale(1.05); 
    }
  }
  
  .testimonials-slider .trust-swipe-hint svg {
    width: 20px;
    height: 20px;
    animation: trustArrowMove 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(97, 0, 0, 0.3));
  }
  
  @keyframes trustArrowMove {
    0%, 100% { 
      transform: translateX(0) scale(1); 
    }
    50% { 
      transform: translateX(8px) scale(1.1); 
    }
  }
  
  /* Touch-Hint entfernt */
  
  /* Testimonial Highlight Responsive */
  .testimonial-highlight {
    margin-top: var(--space-4xl);
  }
  
  .testimonial-highlight blockquote {
    padding: var(--space-3xl) var(--space-2xl);
  }
  
  .testimonial-highlight blockquote p {
    font-size: var(--text-xl);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .trust-section {
    padding: var(--space-5xl) 0;
  }
  
  .trust-header {
    margin-bottom: var(--space-4xl);
  }
  
  .trust-header h2 {
    font-size: var(--text-3xl);
  }
  
  .trust-header p {
    font-size: var(--text-lg);
  }
  

  
  /* TESTIMONIALS - HORIZONTAL SWIPE (kleine Mobile) */
  .testimonials-slider {
    margin: var(--space-3xl) 0 0;
    padding: var(--space-md) 0;
  }
  
  .testimonial-slide {
    flex: 0 0 90vw;
    max-width: 350px;
  }
  
  .testimonial-slide:last-child {
    margin-right: var(--space-2xl);
  }
  
  .testimonial-card {
    padding: var(--space-xl) var(--space-md);
    max-width: 350px;
  }
  
  .testimonials-slider .trust-swipe-hint {
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
  }
  
  .testimonials-slider .trust-swipe-hint svg {
    width: 18px;
    height: 18px;
  }
  
  .avatar-placeholder {
    width: 40px;
    height: 40px;
  }
  
  .avatar-placeholder span {
    font-size: var(--text-base);
  }
  
  .verified-badge {
    width: 16px;
    height: 16px;
    top: -2px;
    right: -2px;
  }
  
  .verified-badge svg {
    width: 10px;
    height: 10px;
  }
  
  .testimonial-rating .stars {
    display: none;
  }
  
  .testimonial-card blockquote {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
  }
  
  .testimonial-card cite strong {
    font-size: var(--text-base);
  }
  
  .testimonial-card cite span {
    font-size: var(--text-xs);
  }
  
  /* TOUCH HINT FÜR MOBILE KOMPAKTER */
  .touch-hint-text {
    font-size: 10px;
    gap: 4px;
  }
  
  .touch-hint-icon {
    width: 14px;
    height: 14px;
  }
  

  
  /* Mobile Testimonial Highlight */
  .testimonial-highlight {
    margin-top: var(--space-3xl);
  }
  
  .testimonial-highlight blockquote {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .testimonial-highlight blockquote p {
    font-size: var(--text-lg);
  }
  
  .testimonial-highlight cite strong {
    font-size: var(--text-lg);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trust-section {
    padding: var(--space-4xl) 0;
  }
  

  
  /* Small Mobile Testimonial Highlight */
  .testimonial-highlight {
    margin-top: var(--space-2xl);
  }
  
  .testimonial-highlight blockquote {
    padding: var(--space-xl) var(--space-md);
  }
  
  .testimonial-highlight blockquote p {
    font-size: var(--text-base);
  }
  
  .testimonial-highlight cite strong {
    font-size: var(--text-base);
  }
}

/* ======================================== 
   PREMIUM ENTRANCE ANIMATIONS
   ======================================== */

.testimonial-highlight {
  opacity: 0;
  transform: translateY(30px);
  animation: testimonialEntrance 0.8s ease-out 1.4s forwards;
}

@keyframes testimonialEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ======================================== 
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .testimonial-highlight {
    animation: none !important;
    transition: none !important;
  }
  
  .testimonial-highlight {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .testimonial-highlight:hover {
    transform: none !important;
  }
  
  .trust-section::after {
    animation: none !important;
  }
}

/* GPU Acceleration */
.testimonial-highlight blockquote {
  will-change: transform;
  backface-visibility: hidden;
}

/* ======================================== 
   PREMIUM FINISHING TOUCHES
   ======================================== */

/* Subtle Trust Section Branding */
.trust-section .container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-accent) 50%, 
    transparent 100%);
  transform: translateX(-50%);
  opacity: 0.4;
}



/* Print Styles */
@media print {
  .trust-section {
    background: none !important;
    color: black !important;
  }
  
  .trust-section::before,
  .trust-section::after {
    display: none !important;
  }
  

  .testimonial-highlight blockquote p,
  .testimonial-highlight cite strong,
  .testimonial-highlight cite span {
    color: black !important;
    text-shadow: none !important;
  }
  
  .testimonial-highlight {
    margin-top: 40px !important;
  }
  
  .testimonial-highlight blockquote {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
