  .testimonials-section {
               width: 100%;
               padding: 35px 20px;
               background: #ffffff;
               font-family: Arial, sans-serif;
          }

          .testimonials-container {
               max-width: 1800px;
               margin: 0 auto;
          }

          .testimonials-container h2 {
               text-align: center;
               font-size: 36px;
               line-height: 1.2;
               color: #000;
               margin-bottom: 18px;
               font-weight: 700;
          }

          .testimonial-card {
               background: #fff;
               border: 1px solid #cfcfcf;
               box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.25);
               padding: 12px 20px;
               margin-bottom: 16px;
          }

          .testimonial-card h3 {
               font-size: 26px;
               color: #000;
               margin: 0 0 20px;
               font-weight: 700;
          }

          .testimonial-card p {
               font-size: 15px;
               line-height: 1.6;
               color: #000;
               margin: 0 0 18px;
               font-weight: 600;
          }

          .testimonial-card span {
               display: block;
               font-size: 16px;
               font-style: italic;
               font-weight: 700;
               color: #000;
          }

          @media (max-width: 768px) {
               .testimonials-section {
                    padding: 28px 14px;
               }

               .testimonials-container h2 {
                    font-size: 28px;
                    margin-bottom: 16px;
               }

               .testimonial-card {
                    padding: 14px;
                    margin-bottom: 14px;
               }

               .testimonial-card h3 {
                    font-size: 22px;
                    margin-bottom: 14px;
               }

               .testimonial-card p {
                    font-size: 14px;
                    line-height: 1.55;
               }

               .testimonial-card span {
                    font-size: 15px;
               }
          }

          @media (max-width: 480px) {
               .testimonials-container h2 {
                    font-size: 24px;
               }

               .testimonial-card h3 {
                    font-size: 20px;
               }

               .testimonial-card p {
                    font-size: 13.5px;
               }
          }
         