
.privacy-page {
  width: 100%;
  min-height: 100vh;
}

/* -------------------------
   HERO
   ------------------------- */

.privacy-hero {
    position: relative;
    width: min(100% - 24px, 1000px);
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
       background: linear-gradient(rgb(0 0 0 / 84%), rgb(0 0 0 / 92%)), url(https://res.cloudinary.com/jhbsawms/image/upload/v1786248639/privacyimage_d5nrh1.jpg) top center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1%;
}

.privacyhero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(214, 103, 33, .18), transparent 27%),
    rgba(0, 0, 0, .08);
  pointer-events: none;
}

.privacyhero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    gap: 16px;
    align-items: start;
    padding: 0 2% 0 2%;
    justify-content: center;
}

.privacyhero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.1vw, 50px);
  line-height: 1;
  letter-spacing: -1.8px;
  font-weight: 700;
	color: #ffffff;
    font-size: 60px;
    text-align: center;
}

.privacyhero-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, .9);
	color: #ffffff;
    font-size: 16px;
    text-align: center;
}

/* -------------------------
   MAIN TWO-COLUMN AREA
   ------------------------- */

.privacy-layout {
  width: 75%;
  margin: 77px auto 100px;

  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  column-gap: 40px;
  align-items: start;
}

/* -------------------------
   TABLE OF CONTENTS
   ------------------------- */

.toc {
  position: relative;
}

.toc-inner {
  position: sticky;
  top: 28px;
}

.toc h2 {
  margin: 0 0 16px;
  color: #302d2a;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  min-height: 24px;
  padding: 14px 7px;

  display: flex;
  align-items: center;
  gap: 8px;

  border-radius: 5px;
  color: #6d6864;
  text-decoration: none;

  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;

  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.toc-link:hover {
  color: #302b27;
  background: rgba(53, 42, 37, .07);
}

.toc-link.active {
  color: #000;
  background: var(--active);
  font-weight: 500;
}

.toc-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toc-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -------------------------
   POLICY CONTENT
   ------------------------- */

.policy-content {
  min-width: 0;
  max-width: 100%;
}

.policy-section {
  scroll-margin-top: 30px;
}

.policy-section + .policy-section {
  margin-top: 62px;
}

.policy-content h2 {
  margin: 0 0 24px;

  color: var(--heading);
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.65px;
  font-weight: 700;
}

.policy-content p,
.policy-content li {
  color: #706c68;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.policy-content p {
  margin: 0 0 14px;
}

.policy-content strong {
  color: #403c39;
  font-weight: 700;
}

.main-list {
  margin: 0;
  padding-left: 24px;
}

.main-list > li {
  padding-left: 1px;
  margin-bottom: 13px;
}

.main-list > li::marker {
  color: #4d4844;
  font-weight: 600;
}

.main-list ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.main-list ul li {
  margin-bottom: 10px;
  padding-left: 2px;
}

.main-list ul li::marker {
  color: #8c8782;
  font-size: 8px;
}

.closing-note {
  margin-top: 13px !important;
}

.simple-list {
  margin: 0;
  padding-left: 20px;
}

.simple-list li {
  margin-bottom: 9px;
}

/* -------------------------
   RESPONSIVE
   ------------------------- */

@media (max-width: 800px) {
  .privacy-hero {
           width: calc(100% - 20px);
        height: 170px;
        border-radius: 15px;
        margin: 0 auto;
        margin-top: 1%;
  }
.privacyhero-content h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4.1vw, 50px);
    line-height: 1;
    letter-spacing: -1.8px;
    font-weight: 700;
    
    font-size: 30px;
    text-align: center;
}
	.privacyhero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    gap: 2px;
    align-items: start;
    padding: 0 2% 0 2%;
    justify-content: center;
}
	.privacyhero-content p {
    margin: 0;
    font-size: 13px;
    
    font-size: 14px;
    text-align: center;
}
  .privacy-layout {
    width: 80%;
    margin-top: 48px;
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .toc-inner {
    position: static;
  }

  .toc nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
  }
.policy-content h2 {
    margin: 0 0 24px;
    color: var(--heading);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.65px;
    font-weight: 700;
}
  .toc-link {
    font-size: 14px;
  }

  .policy-content {
    max-width: none;
  }
		.pages-hero-wrapper {
    width: 98% !important;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 16px 28px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 
    margin: 0 auto;
    margin-top: 1%;
}
}

@media (max-width: 520px) {
  .privacy-hero {
    height: 150px;
	  width: 97%;
  }
	    .privacyhero-content h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 4.1vw, 50px);
        line-height: 1;
        letter-spacing: -0.3px;
        font-weight: 700;
        font-size: 24px;
        text-align: center;
    }
	    .privacyhero-content p {
        margin: 0;
        font-size: 13px;
        font-size: 12px;
        text-align: center;
    }

  .hero-content h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .hero-content p {
    padding: 0 15px;
    font-size: 10px;
  }

  .privacy-layout {
    width: 80%;
    margin-top: 38px;
    margin-bottom: 70px;
  }

  .toc h2 {
    font-size: 12px;
  }

  .toc nav {
    grid-template-columns: 1fr;
  }

  .toc-link {
    min-height: 28px;
    font-size: 10px;
	      padding: 4px 7px;
  }

  .policy-content h2 {
    font-size: 20px;
    margin-bottom: 19px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 14px;
    line-height: 1.8;
  }

  .policy-section + .policy-section {
    margin-top: 48px;
  }
}


   