.privacy-page {
  background: #f3f1ee;
  padding: 42px 0 36px;
}

.privacy-page__container {
  width: min(1260px, calc(100vw - 40px));
}

.privacy-page__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 110px;
}

.privacy-summary__title {
  margin: 0;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1;
}

.privacy-summary__line {
  width: 120px;
  height: 3px;
  background: #c89a3d;
  margin: 14px 0 18px;
}

.privacy-summary__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-summary__link {
  color: #21394d;
  font-size: 0.98rem;
  line-height: 1.28;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.privacy-summary__link:hover {
  color: #0b4a73;
}

.privacy-summary__link.is-active {
  color: #c89a3d;
}

.privacy-content {
  min-width: 0;
}

.privacy-section {
  scroll-margin-top: 110px;
  margin-bottom: 38px;
}

.privacy-section h1,
.privacy-section h2 {
  margin: 0 0 20px;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.05;
}

.privacy-section h3 {
  margin: 0 0 16px;
  color: #0a2438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.privacy-section p {
  margin: 0 0 22px;
  color: #394a59;
  font-size: 1rem;
  line-height: 1.35;
  max-width: 820px;
}

.privacy-section--sub {
  margin-top: -8px;
}

@media (max-width: 980px) {
  .privacy-page__container {
    width: calc(100vw - 22px);
  }

  .privacy-page__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-summary {
    position: static;
    top: auto;
  }

  .privacy-section {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 820px) {
  .privacy-page {
    padding: 28px 0 24px;
  }

  .privacy-summary__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .privacy-summary__line {
    width: 110px;
  }

  .privacy-summary__link {
    font-size: 0.96rem;
  }

  .privacy-section h1,
  .privacy-section h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .privacy-section h3 {
    font-size: clamp(1.45rem, 6vw, 1.8rem);
  }

  .privacy-section p {
    font-size: 0.98rem;
    line-height: 1.42;
  }
}
.strip()