.stats-section {
    background-color: #f0f4f8;
    padding: 40px 20px;
    text-align: center;
  }
  
  .stats-title {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
  }
  
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .stats-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33.333% - 40px);
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .stats-item:hover {
    transform: scale(1.05);
  }
  
  .stats-icon {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 10px;
  }
  
  .stats-title-item {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .stats-description {
    font-size: 16px;
    color: #666;
  }
  