
    /* body {
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial;
      background: #f8fafc;
    } */
    section.stats-section {
      background: linear-gradient(135deg, #e0f7fa, #ffffff);
      padding: 4rem 0;
    }
    .stat-card {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      min-height: 100px;
      transition: transform 0.2s;
    }
    .stat-card:hover {
      transform: translateY(-5px);
    }
    .stat-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.75rem;
      background: rgba(14, 165, 166, 0.08);
      flex-shrink: 0;
      color: #0ea5a6;
    }
    .stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
    }
    .stat-label {
      margin: 0;
      color: #6b7280;
      font-size: 0.9rem;
    }
