body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9f9;
  color: #222;
  padding: 40px 20px;
}

.adm-wrapper-icons {
  max-width: 900px;
  margin: 0 auto;
}

.adm-title-icons {
  color: #3dc0e4;
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 0.25rem;
}

.adm-desc-icons {
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 720px;
  line-height: 1.35;
}

/* Grid two columns */
.adm-grid-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2.5rem;
}

/* Each row item with number and label */
.adm-item-icons {
  display: flex;
  height: 56px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.05);
  overflow: hidden;
  background: #fff;
}

/* Number with green gradient background */
.adm-number-icons {
  flex-basis: 140px;
  background: linear-gradient(90deg, #002147, #002147);
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 56px;
  text-align: center;
  user-select: none;
  box-shadow: inset -8px 0 20px rgba(255 255 255 / 0.3);
  border-radius: 6px 0 0 6px;
}

/* Label with icon and text */
.adm-label-icons {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-left: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #555555;
  gap: 9px;
  border-radius: 0 6px 6px 0;
  user-select: none;
}

/* Icon styling */
.adm-label-icons i {
  font-size: 1.3rem;
  color: #002147;
  min-width: 24px; /* Align icons */
  text-align: center;
}

/* Responsive for small screens */
@media (max-width: 560px) {
  .adm-grid-icons {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  
  .adm-item-icons {
    flex-direction: row;
    height: 56px;
  }
}