body {
    margin: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .container {
    margin: 10px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 986px;
  }
  
  .leading-nav {
    display: flex;
    align-items: center;
   
  }
  .body-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 986px;
    width: 100%;
  }
  
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
  }
  
  .info {
    font-size: 1.05rem;
    margin-bottom: -10px;
    line-height: 27px;
    text-align: justify;
    padding: 20px !important;
  }
  
  .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
    width: 100%;
  }
  
 
  
  .service-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
  
  .service-title {
    font-size: 1rem;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 100%;
    gap:10px;
  }

  .service-number img{
    width: 100px;
    height: auto;
  }
  
  .service-info {
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    line-height: 25px;
    color: #252508da;
    margin-top: -20px;
  }
    
  @media (min-width: 768px) {
    ul {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }
  
    .content-wrapper {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    ul{
      max-width: 100%;
      width: 100%;
    }
  }

  @media (max-width: 768px) {
  .main-content {
    padding: 10px;
    gap: 15px;
    align-items: stretch;
    width: 100%;
  }

  .info {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 15px !important;
  }

  
}

  

    
     
    
   






   





  
    
  