.heroSection {
  position: relative;
  height: 100dvh;
  overflow: hidden;

  figure {
    height: 100%;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .heroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-black);
    width: 90%;
    max-width: 800px;
    background-color: rgba(251, 251, 251, 0.85);
    padding: 2rem;
    border-radius: 8px;

    h1 {
      font-size: var(--font-h1);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    p {
      font-size: var(--font-base);
      opacity: 0.9;
    }
  }
}

.privacySection {
  padding: 6rem 0;
  background-color: var(--color-white);

  .privacyContent {
    max-width: 800px;
    margin-inline: auto;
    padding: 32px 0;

    > p {
      margin-bottom: 3rem;
      color: #666;
    }

    .policySection {
      margin-bottom: 3rem;

      &:last-child {
        margin-bottom: 0;
      }

      h3 {
        font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
        margin-bottom: 1rem;
        color: var(--color-black);
      }

      p {
        margin-bottom: 1rem;
        color: #666;
      }

      ul {
        list-style: disc;
        padding-left: 1.5rem;
        color: #666;

        li {
          margin-bottom: 0.5rem;

          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }
  }
}