.nav1-topbar-contact a {
  color: var(--textColour1);
}

/* ===== SECTION: Contact Hero START ===== */

#contact-hero {
  position: relative;
  min-height: 65svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background-color: var(--bgColour1);
}

#contact-hero .container {
  z-index: 1;
}

/* Background Image */
.contact-hero__media {
  position: absolute;
  inset: 0;
}

.contact-hero__media picture,
.contact-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hero__image {
  object-fit: cover;
}

/* Overlay */
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 244, 0.96) 0%,
      rgba(250, 247, 244, 0.88) 48%,
      rgba(250, 247, 244, 0.72) 100%
    ),
    rgba(250, 247, 244, 0.45);
}

/* Content */
.contact-hero__content {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: var(--spaceSmmd);
  justify-items: center;
}

/* Heading */
.contact-hero__content h1 {
  font-weight: 500;
  line-height: 1.05;
}

/* Text */
.contact-hero__content > p:last-child {
  max-width: 36rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 768px) {
  #contact-hero {
    min-height: 65svh;
  }
}

/* ===== SECTION: Contact Hero END ===== */

/* ========================================
   Privacy Policy Page
======================================== */
#privacy-policy .container {
  max-width: 850px;
}

#privacy-policy h1 {
  margin-bottom: 2rem;
}

#privacy-policy h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

#privacy-policy p {
  margin-bottom: 1.6rem;
}

#privacy-policy ul {
  margin: 0 0 2rem 2rem;
  padding: 0;
}

#privacy-policy li {
  margin-bottom: 0.8rem;
}

#privacy-policy strong {
  font-weight: 600;
  color: #2f2f2f;
}

#privacy-policy a {
  color: #b88989;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#privacy-policy a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  #privacy-policy {
    padding: 6rem 0;
  }

  #privacy-policy h2 {
    margin-top: 3rem;
  }

  #privacy-policy p,
  #privacy-policy li {
    font-size: 1.5rem;
  }
}
