* {
    margin: 0;
   padding: 0;
   box-sizing  :   border-box;
}

body {
  font-family: 'Fira Sans', sans-serif;
	line-height: 1.6;
   color: #151915;
    background-color     :   #FFFFFF;
}

.back-link


{
   padding: 20px;
   background: #f8f9fa;
}

.back-link a {
    color: #3B413C;
    text-decoration: none;
	 font-weight: 500;
   font-size: 14px;
    transition: color 0.3s ease;
  text-transform: uppercase;
	letter-spacing: 1px;
}

.back-link a:hover		{
   color: #151915;}

.container {
    max-width: 1200px;
	margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header		{
      padding: 60px 0;
  background: linear-gradient(135deg, #3B413C 0%, #4a524b 100%);
    text-align: center;
}

.testimonials-header h1 {

	    font-size: 48px;
	font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
     }

.testimonials-header p {


    font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
   max-width: 600px;
   margin: 0 auto;
}

.testimonials-grid {
    padding: 80px 0;
}

.testimonials-grid .container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.testimonial-item {
    background: #f8f9fa;
  border-radius: 10px;
    padding: 35px;
   border-left: 4px solid #3B413C;
   transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-text p {
    font-size: 16px;
  line-height: 1.7;
  color: #151915;
    margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author h4 {


   font-size: 18px;
  font-weight: 600;
   margin-bottom: 5px;
 color: #3B413C;

}

.testimonial-author span{
    font-size: 14px;
    color:#666;
  text-transform:  uppercase;
  letter-spacing: 1px;
    font-weight: 500;
}@media (max-width: 768px) {
    .testimonials-grid .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-header h1 {
        font-size: 36px;
    }
    
    .testimonials-header p {
        font-size: 18px;
    }
    
    .testimonials-header {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        padding: 60px 0;
    }
    
    .testimonial-item {
        padding: 25px;
    }
}

@media (max-width: 580px) {
    .testimonials-grid .container {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .testimonials-header h1 {
        font-size: 28px;
    }
    
    .testimonials-header p {
        font-size: 16px;
    }
}