  .stat-card {
      background: white;
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
      margin-bottom: 20px;
  }

  .stat-card:hover {
      transform: translateY(-10px);
  }

  .stat-number {
      font-size: 3rem;
      font-weight: bold;
      color: #2563eb;
      display: block;
  }

  .stat-label {
      color: #666;
      font-size: 1rem;
  }

  .feature-card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
      height: 100%;
  }

  .feature-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
  }

  .feature-icon {
      font-size: 2.5rem;
      color: #2563eb;
      margin-bottom: 20px;
  }

  .cta-section {
      background: #f8f9fa;
      padding: 80px 0;
  }
