/* Statistics Section */
.statistics-section {
  padding: 8rem 4rem;
  background: #ffffff;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
}

.statistics-header {
  text-align: center;
  margin-bottom: 6rem;
}

.statistics-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

.statistics-subtitle {
  font-size: 2rem;
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.stat-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.stat-description {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.5;
}

/* Responsive Design for Statistics Section */
@media (max-width: 992px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .statistics-title {
    font-size: 3rem;
  }
  
  .statistics-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .statistics-section {
    padding: 4rem 2rem;
  }
  
  .statistics-title {
    font-size: 2.5rem;
  }
  
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
} 