    * {
      font-family: 'Inter', sans-serif;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background: #f0fdf4;
      color: #1e293b;
      min-height: 100vh;
    }
    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e2e8f0;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 50;
    }
    header .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    header .brand .logo {
      width: 36px; height: 36px;
      border-radius: 12px;
      background: #0ca392;
      color: #fff;
      font-weight: bold;
      display: grid;
      place-items: center;
      font-size: 18px;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav div {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #e2fae8;
      border: 1px solid #e2e8f0;
      padding: 6px 15px;
      border-radius: 15px;
      font-weight: 600;
      font-size: 16px;
    }
    .logo-box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  .logo-box img {
      width: 70%;
      height: 70%;
      object-fit: contain;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(180deg,#064e3b 0%,#0d9488 60%,#34d399 100%);
                  /* background-color: #0b7e75; */
                  
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .hero .icon {
      width: 70px; height: 70px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: grid;
      place-items: center;
      font-size: 30px;
      margin: 0 auto;
    }
    .hero h2 {
      margin-top: 16px;
      font-size: 32px;
      font-weight: 800;
    }
    .hero p {
      margin-top: 8px;
      font-size: 14px;
      color: rgba(255,255,255,0.9);
    }
    .hero img {
     height: 100px;
    }
    /* Layout */
    main {
      max-width: 1500px;
      margin: auto;
      padding: 30px 20px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media(min-width: 1024px) {
      main {
        grid-template-columns: 2fr 1fr;
      }
    }
    /* Card Grid */
    #cardsGrid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media(min-width: 640px) {
      #cardsGrid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(min-width: 1280px) {
      #cardsGrid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    .card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 10px 30px rgba(2,12,27,0.08);
      display: flex;
      flex-direction: column;
    
    }
    .card .top {
      display: flex;
      justify-content: space-between;
      align-items: start;

    }
    .card .top .icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: #99f6e4;
      display: grid;
      place-items: center;
      font-size: 20px;
    }
    
    .card h4 {
      font-weight: bold;
      font-size: 20px;
    }
    .card .number {
      font-size: 22px;
      font-weight: 800;
      margin-top: 10px;
    }
    .category {
      display: inline-block;
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 10px;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      margin-top: 6px;
    }
    .actions {
      margin-top: 12px;
      display: flex;
      gap: 8px;
      text-align: center;
    }
    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 10px;
      font-size: 14px;
      cursor: pointer;
      border: 1px solid #cbd5e1;
      background: #fff;
      width: 150px;
    }
    .btn.call {
      background: #00A63E;
      color: #fff;
      border: none;
    
    }
    .btn.call:hover {
      background: #0b7e75;
    }
    /* History */
    aside {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: 0 10px 30px rgba(2,12,27,0.08);
    }
    aside header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      border-bottom: 1px solid #e2e8f0;
      background: #fff;
      position: static;
    }
    #historyList {
      flex: 1;
      overflow-y: auto;
    }
    #historyList li {
      display: flex;
      gap: 12px;
      padding: 12px 16px;
      border-bottom: 1px solid #e2e8f0;
    }
    #historyList .icon {
      width: 36px; height: 36px;
      background: #f1f5f9;
      border-radius: 8px;
      display: grid;
      place-items: center;
    }
    #historyList p {
      font-size: 14px;
    }
    #clearHistory {
      font-size: 13px;
      padding: 8px 20px;
      border-radius: 15px;
      background: #f1f5f9;
      border: 1px solid #cbd5e1;
      cursor: pointer;
      background-color: #00A63E;
      color: white;
    }
    #clearHistory:hover {
      background: #e2e8f0;
    }

    .service-container {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  gap: 20px;
}

.left-side {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 15px;
  width:200px;
}

.right-side {
  font-size: 12px;
  color: #64748b;
  font-size: 12px;
  text-align: end;
}