
    .testimonials {
      max-width: 1200px;
      margin: 60px auto;
      padding: 20px;
      text-align: center;
    }

    .testimonials h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testimonial-card {
      background-color:  #1a1a1a;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease-in-out;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(255, 107, 53, 0.15); /* <-- ΔΙΟΡΘΩΣΗ 2 */
      border-color: #ff6b35;
    }
    .client-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .client-name {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .stars {
      color: #FFD700;
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .testimonial-text {
      font-size: 0.95rem;
      line-height: 1.65;
    }

@media (max-width: 768px) {
.testimonial-cards {
    grid-template-columns: 1fr;
  }
                    
}