    .hero {
      position: relative;
      text-align: center;
      color: white;
      padding: 16rem 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 0;
      overflow: hidden;
    }

    .hero img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }


    
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: #18468299;
      z-index: 1;
    }

    .hero * {
      position: relative;
      z-index: 2;
    }

    .hero h2 {
      font-size: 2.5rem;
      font-weight: normal;
      font-family: 'Cormorant Garamond', sans-serif;
    }

    .hero h1 {
      font-size: 3.8rem;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .hero h1 {
      font-size: 2.8rem;
      font-weight: bold;
      }
    }

    .hero p {
      font-size: 1.25rem;
    }
