/* ===== Stats Section Styling ===== */
.stats-section {
  background: #F8F8F8;
  padding: 50px 10px;
  color: #1C085D;
  position: relative;
  overflow: hidden;
}

.stats-heading {
  text-align: center;
  margin-bottom: 30px;
}
.stats-heading h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1C085D;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-family: 'Georgia', serif;
}
.stats-heading p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
  font-family: 'Arial', sans-serif;
  font-style: italic;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1000px) {
  .stats-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 14px 20px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(28,8,93,0.06);
  border: 1px solid #ececec;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s, background 0.18s;
  min-width: 0;
  position: relative;
}
.stat-item:hover,
.stat-item:focus-within {
  box-shadow: 0 8px 24px rgba(28,8,93,0.10);
  border: 1.5px solid #EB001B;
  background: #faf7f7;
  transform: translateY(-2px) scale(1.01);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #EB001B;
  filter: none;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1C085D;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: none;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

@media (max-width: 480px) {
  .stats-section {
    padding: 30px 4px;
  }
  .stats-heading h2 {
    font-size: 1.2rem;
  }
  .stats-heading p {
    font-size: 0.9rem;
  }
  .stat-item {
    padding: 16px 6px 14px 6px;
    border-radius: 8px;
  }
  .stat-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  .stat-number {
    font-size: 1.2rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
}