/* General Section Styling */
.stats-section {
    background-color: #ffe6cc;
    padding: 40px 10px;
    border-radius: 15px; /* Rounded corners */
    text-align: center;
  }
  
  .stats-container {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping on smaller screens */
    justify-content: space-around; /* Even spacing between items */
    gap: 20px; /* Add space between items */
  }
  
  .stat-item {
    flex: 1 1 calc(25% - 20px); /* Responsive width for 4 items */
    min-width: 150px; /* Minimum width for small screens */
  }
  
  .stat-value {
    font-size: 2.2rem;
    color: #fca038; /* Orange color */
    font-weight: bold;
    margin: 0;
  }
  
  
  .stat-title {
    font-size: 1.5rem;
    color: #686767; /* Muted text color */
    margin: 0;
    font-weight: 700;
  }
  @media screen and (max-width: 1024px) {
    
  }
  
  @media screen and (max-width: 768px) {
    .stat-value {
      font-size: 2.0rem;
      color: #fca038; /* Orange color */
      font-weight: bold;
      margin: 0;
    }
    
    
    .stat-title {
      font-size: 1.3rem;
      color: #686767; /* Muted text color */
      margin: 0;
      font-weight: 700;
    }
  }
  
  @media screen and (max-width: 480px) {
     
  }