body {
    font-family: 'Work Sans', 'Noto Sans', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFFFFF;
    overflow-x: hidden;
  }
  .container {
    padding: 16px;
  }
  .header, .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #FFFFFF;
  }
  .header {
    flex-direction: column;
    gap: 8px;
  }

  .serviceheader{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .sicon{
    margin-left:  50px;
  }
  .serviceheader > .sicon > i{
    padding: 5px;
    font-size: 20px;
    color: rgb(13, 112, 13);
    border: 2px solid black;
    border-radius: 5px;
    margin-left: 5px;
  }
  .header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #141414;
  }

  .servicesheader  h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #141414;
  }
  .search-bar {
    display: flex;
    align-items: center;
    background-color: #F4F4F4;
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
    width: 95%;
  }
  .search-bar input {
    border: none;
    background: transparent;
    padding: 8px;
    flex: 1;
    font-size: 16px;
    color: #141414;
    width: 90%;
    height: 30px;
  }
  .search-bar input:focus {
    outline: none;
  }
  .tabs {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
  .tab {
    padding: 8px 0;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
  }
  .tab.active {
    border-color: #39E079;
    color: #141414;
  }
  .tab.inactive {
    color: #a8a8a8;
  }
  .service {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E0E0E0;
  }
  .service img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
  }
  .service-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-title {
    font-size: 16px;
    font-weight: 500;
    color: #141414;
    margin: 0;
  }
  .service-price {
    font-size: 14px;
    color: #a8a8a8;
    margin: 0;
  }
  .footer {
    border-top: 1px solid #F4F4F4;
  }
  .footer-nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .footer-nav-item {
    text-align: center;
    color: #a8a8a8;
    font-size: 12px;
  }
  .footer-nav-item.active {
    color: #141414;
  }
  @media (min-width: 768px) {
    .header {
      flex-direction: row;
    }
    .tabs {
      justify-content: space-between;
    }
  }