 .hero-section {
      background: linear-gradient(rgba(11, 28, 54, 0.5), rgba(11, 28, 54, 0.5)), 
        url(https://www.shutterstock.com/image-photo/group-job-seekers-shaking-hands-600nw-2473992555.jpg);
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 36px;
      font-weight: bold;
      color: #ffffff;
    }

    .hero-section h2 {
      font-size: 28px;
      font-weight: bold;
      color: #cce0ff;
      margin-bottom: 20px;
    }

    .hero-section p {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 16px;
      color: #d0d0d0;
      line-height: 1.7;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-item h3 {
      font-size: 40px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .stat-item p {
      color: #c0c0c0;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 28px;
      }

      .hero-section h2 {
        font-size: 22px;
      }

      .stats {
        flex-direction: column;
        gap: 30px;
      }
    }
    
    