    body {
      font-family: 'Segoe UI', sans-serif;
      scroll-behavior: smooth;
    }
   .hero {
    background: url('../img/neverinn-relaxing-poolside.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }

