.hero-section {
      margin-top: 100px;;
      
      height: 30vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
          }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero-content p {
      font-size: 1.2rem;
    }

    /* Values Cards */
    .value-card {
      transition: all 0.3s ease;
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      
    }
    

    .value-card:hover {
      transform: translateY(-10px);
    }

    @media (max-width: 768px) {
      .hero-section {
        height: 55vh;
      }

      .hero-content h1 {
        font-size: 2rem;
      }
    }