     body {
         font-family: Arial, sans-serif;
         background-color: #f8f9fa;
     }

     .pagetitle {
         font-family: 'Trebuchet MS', sans-serif;
         font-weight: 800;
         font-size: 2rem;
         /* Slightly larger font for emphasis */
         color: white;
         margin: 0 0 10px 0;
         /* Add some spacing below the title */
     }



     .hero {
         background: url('C:/Users/DELL/Desktop/public/images/interpretation.jpg') no-repeat center center/cover;
         color: black;
         text-align: center;
         padding: 100px 20px;
     }

     .hero h1 {
         font-size: 3rem;
         font-weight: bold;
     }

     .hero p {
         font-size: 1.2rem;
     }

     .services-list li {
         font-size: 1.1rem;
         margin-bottom: 10px;
     }

     .testimonials-section {
         background-color: #ffffff;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
         border-radius: 8px;
         padding: 20px;
     }

     .accordion-button i {
         transition: transform 0.3s ease-in-out;
     }

     .accordion-button.collapsed i {
         transform: rotate(0deg);
     }

     .accordion-button:not(.collapsed) i {
         transform: rotate(180deg);
     }

     .split-list-container {
         display: flex;
         justify-content: space-between;
         align-items: flex-start;
         flex-wrap: wrap;
         /* Ensures wrapping on smaller screens */
         gap: 2rem;
         /* Space between columns */
         margin: 2rem 0;
         /* Space above and below the container */
     }

     .split-list-container ul {
         list-style-type: none;
         margin: 0;
         padding: 0;
         flex: 1;
         /* Allows the lists to take up equal space */
         min-width: 150px;
         /* Ensures minimum width for each list */
     }

     .split-list-container li {
         line-height: 1.8;
         /* Line spacing for readability */
     }

     @media (max-width: 768px) {
         .split-list-container {
             flex-direction: column;
             /* Stack the lists vertically */
             gap: 1.5rem;
             /* Adjust spacing between lists for smaller screens */
         }
     }


     .professionalTranslationLi li::before {
         content: "-";
         /* Add custom bullet */
         font-weight: bold;
         /* Bold the dash */
         margin-right: 0.5em;
         /* Add space after the dash */
     }

     .btn-order {
         background-color: #007bff;
         color: white;
         font-size: 1.2rem;
         font-weight: bold;
     }

     .btn-order:hover {
         background-color: #0056b3;
     }

     .testimonial-item {
         margin-bottom: 20px;
     }

     .testimonial-item p {
         font-style: italic;
     }