.stats-section {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8bW91bnRhaW5zfGVufDB8fDB8fHww");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 176px 0;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.4;
}

.stats-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 40px;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  color: var(--bs-success);
  font-size: 3rem;
  width: 1em;
  height: 1em;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 8px;
}

.stat-label {
  color: var(--bs-success);
  font-weight: 700;
  margin-top: 20px;
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .stats-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 100px 0;
  }

  .stat-item h2 {
    font-size: 2.5rem;
  }
}
