.aiims-hospital-statistics {
  width: 100%;
  background: #0b3157;
  color: #ffffff;
  padding: 52px 30px;
  box-sizing: border-box;
}

.aiims-hospital-statistics .statistics-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
}

.aiims-hospital-statistics .statistics-item {
  text-align: center;
}

.aiims-hospital-statistics .statistics-month {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
}

.aiims-hospital-statistics .statistics-number {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}

.aiims-hospital-statistics .statistics-label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.aiims-hospital-statistics .statistics-action {
  text-align: center;
}

.aiims-hospital-statistics .monthly-achievements-button {
  display: inline-block;
  padding: 13px 22px;
  background: #ffffff;
  color: #222222;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.aiims-hospital-statistics .monthly-achievements-button:hover,
.aiims-hospital-statistics .monthly-achievements-button:focus {
  background: #f1f1f1;
  color: #111111;
  text-decoration: none;
}

@media (max-width: 992px) {
  .aiims-hospital-statistics {
    padding: 30px 20px;
  }

  .aiims-hospital-statistics .statistics-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .aiims-hospital-statistics {
    padding: 25px 15px;
  }

  .aiims-hospital-statistics .statistics-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .aiims-hospital-statistics .statistics-number {
    font-size: 25px;
  }

  .aiims-hospital-statistics .statistics-month {
    font-size: 23px;
  }

  .aiims-hospital-statistics .statistics-label {
    font-size: 14px;
  }
}
