.services-section {
    background: var(--secondary-color);
    padding: 120px 8%;
  }
  
  .services-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  }
  
  .service-box {
    padding: 0.5rem 0;
  }
  
  .service-box h3 {
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 0.7rem;
  }
  
  .service-box h3::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background-color: black;
    margin-top: 4px;
  }
  
  .service-box ul {
    list-style: none;
    padding: 0;
  }
  
  .service-box ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
  }
  


  @media screen and (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .service-box h3 {
      font-size: 1rem;
    }
  }