  .hero h1,
  .hero h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #0000;
    text-align: center;
    font-family: var(--font-primary);
    z-index: 10;
    margin: 0;
  }
  
  .hero h1 {
    top: 40%;
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .hero h2 {
    top: 55%;
    font-size: 1.5rem;
    font-weight: 400;
  }
  
  @media (max-width: 768px) {
    .hero {
      height: 100vh;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero h2 {
      font-size: 1rem;
    }
  }