/* ========== GLOBAL RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========== BODY STYLING ========== */
body {
    font-family: "Times Now", serif;

  line-height: 1.5;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ========== STATS SECTION ========== */
.stats-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

/* ========== INDIVIDUAL STAT BLOCK ========== */
.stat {
  text-align: center;
  flex: 0 1 auto;
  min-width: 120px;
}

/* ========== STAT NUMBER ========== */
.number {
  font-size: 58px;
  font-weight: 900;
  color: #4D4D4D;
  line-height: 1;
  margin: 0 0 8px 0;
  display: block;
}

/* ========== STAT LABEL ========== */
.label {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #333;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .stats-section { gap: 30px; padding: 50px 15px; }
  .number { font-size: 52px; }
}

@media (max-width: 992px) {
  .stats-section { gap: 25px; }
  .number { font-size: 48px; }
  .label { font-size: 14px; }
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 40px 20px;
  }
  .stat { min-width: unset; }
  .number { font-size: 50px; margin-bottom: 6px; }
  .label { font-size: 15px; }
}

@media (max-width: 480px) {
  .number { font-size: 44px; }
  .label { font-size: 14px; }
}

/* ===================================== */
/* FORCE 2×2 GRID (2 PER ROW) — PHONES ONLY */
/* ===================================== */

/* All phones — 2 items per row */
@media only screen and (max-width: 767px) {
  .stats-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* 2 columns */
    gap: 28px !important;
    padding: 40px 20px !important;
    justify-content: center;
  }
  .stat {
    min-width: unset !important;
  }
  .number {
    font-size: 44px !important;
  }
  .label {
    font-size: 13px !important;
    letter-spacing: 1.1px !important;
  }
}

/* Extra small phones — still 2 per row */
@media only screen and (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    padding: 35px 15px !important;
  }
  .number {
    font-size: 40px !important;
  }
  .label {
    font-size: 12px !important;
  }
}

/* Very narrow phones — force 2 columns */
@media only screen and (max-width: 360px) {
  .stats-section {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 30px 10px !important;
  }
  .number {
    font-size: 36px !important;
  }
  .label {
    font-size: 11px !important;
  }
}



