:root {
    --primary-color: #FFCC00;
    --secondary-color: #003366;
    --text-color: #333333;
  }
  
  .statistics-section {
    background-color: #f0f4f8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
  }
  
  .statistics-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .stat-card h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .stat-card::after {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.03);
    bottom: -30px;
    right: -30px;
    transform: rotate(15deg);
  }
  
  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-card {
      padding: 20px;
    }
    
    .stat-number {
      font-size: 2rem;
    }
  }