
        .highlight {
            color: #e74c3c;
            font-weight: 600;
        }
        
        .testimonials {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .testimonial {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid #3498db;
        }
        
        .testimonial:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial:nth-child(2) {
            border-left-color: #2ecc71;
        }
        
        .testimonial:nth-child(3) {
            border-left-color: #f39c12;
        }
        
        .testimonial:nth-child(4) {
            border-left-color: #9b59b6;
        }
        
        .testimonial:nth-child(5) {
            border-left-color: #e74c3c;
        }
        
        .testimonial:nth-child(6) {
            border-left-color: #1abc9c;
        }
        
        .author {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .comment-author {
            flex-direction: row;
            display: flex;
        }
        
        .comment-author-info {
            width: 100%;

        }
        
        .comment-author-info h3 {
            color: #2c3e50;
            margin-bottom: 0px;
            font-size: 1.4rem;
            font-weight: 600;
            font-family: "Montserrat", sans-serif;
            text-align: left;
            line-height: 1;
        }
        .comment-author-image {
            align-items: center;
            justify-content: center;
            display: flex;
            margin-right: 10px;
        }
        
        .comment-author-info .position {
            color: #7f8c8d;
            font-size: 1rem;
            font-family: "Montserrat", sans-serif;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f2f5;
            font-style: italic;
        }
        
        .comment-content {
            color: #444;
            font-size: 1.05rem;
            margin-top: 10px;
            line-height: 1.3;
            text-align: left  ;
            font-family: "Montserrat", sans-serif;
        }
        
        .comment-content p {
            margin-bottom: 15px;
        }
        .comment-list {
            margin-top: 40px;
        }
        .comment-rating {
            margin-top: 0px;
            color: #f39c12;
            font-size: 1.4rem;
            text-align: left;
            line-height: 1;
            margin-top: 3px;
        }
          @media (max-width: 768px) {
            .testimonial {
                padding: 15px;
            }

        }
   
        

        @media (min-width: 768px) {
            .testimonials {
                grid-template-columns: repeat(2, 1fr);
            }
            
            h1 {
                font-size: 2.8rem;
            }
        }

      


        
        /* На экранах шире 1200px можно показать 3 колонки, но по ТЗ оставим 2 */
        @media (min-width: 1200px) {
            .testimonials {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Анимация появления карточек */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .testimonial {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .testimonial:nth-child(1) { animation-delay: 0.1s; }
        .testimonial:nth-child(2) { animation-delay: 0.2s; }
        .testimonial:nth-child(3) { animation-delay: 0.3s; }
        .testimonial:nth-child(4) { animation-delay: 0.4s; }
        .testimonial:nth-child(5) { animation-delay: 0.5s; }
        .testimonial:nth-child(6) { animation-delay: 0.6s; }