 .section-title {
     border-bottom: 2px solid black;
     display: inline-block;
     padding-bottom: 5px;
     margin-bottom: 20px;
 }

 .service-list ul {
     list-style: none;
     padding-left: 15px;
 }

 .service-list ul li::before {
     content: "\25B6";
     /* triangle arrow */
     display: inline-block;
     margin-right: 5px;
     color: black;
     font-size: 0.7rem;
 }

 .service-list ul li a {
     text-decoration: none;
     color: inherit;
 }

 .service-list ul li a:hover {
     color: #0d83c7;
 }

 .service-list a {
     text-decoration: none;
     color: inherit;
     transition: all 0.3s ease;
 }

 .service-list a:hover {
     color: #0d83c7;
     /* or your preferred hover color */
 }

 .service-list a.active {
     font-weight: bold;
     color: #0054A5;
     text-decoration: underline;
 }