.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;
    }
  }
}

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

  .sitemapContent {
    max-width: 1200px;
    margin-inline: auto;
  }

  .sitemapGrid {
    display: grid;
    gap: 3rem;

    @media (width >= 768px) {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  .sitemapColumn {
    h2 {
      font-size: var(--font-h2);
      margin-bottom: 1.5rem;
      color: var(--color-primary);
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--color-primary);
    }

    ul {
      li {
        margin-bottom: 1rem;

        a {
          color: #666;
          text-decoration: none;
          transition: color 0.3s ease;

          &:hover {
            color: var(--color-primary);
          }
        }
      }
    }
  }
}