.stats-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff7f2;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .stats-section h2 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .stats-section p {
    margin-bottom: 40px;
    font-size: 1rem;
    color: black;
  }
  
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  
  .stat-box {
    flex: 1 1 200px;
    max-width: 220px;
    padding: 20px;
    border-radius: 12px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .stat-box p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #fff;
  }
  
  .stat-box.black {
    background-color: #000;
  }
  
  .stat-box.orange {
    background-color: #ff6600;
  }
  