.privacy-content-wrapper {
    display: flex;
    gap:95px;
}
.privacy-content-wrapper .title {
    width: 392px;
}
.privacy-content {
    width: calc(100% - 392px - 95px);
    padding:16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 132%;
    letter-spacing: -0.2px;
}
.page-id-69 .section-default-content_inner{
	counter-reset: level1;
}
.page-id-69 .section-default-content_inner ol{
	counter-reset: unset;
	margin-top: 30px;
	margin-bottom: 15px;
}
ol {
  list-style: none;
  counter-reset: level1; /* Счётчик для первого уровня */
  margin: 0;
  padding-left:58px;
}
ol > li {
    display: block;
    position: relative;
    padding: 6px 0;
}
ol > li::before {
  position: absolute;
  left: -58px;
  counter-increment: level1;
  content: counter(level1) ".";
  /* font-weight: 600; */
}

/* Для второго уровня */
ol > li > ol {
  counter-reset: level2;
  margin: 0;
  padding: 0;
}
ol > li > ol > li {

}
ol > li > ol > li::before {
  left: -58px;
  counter-increment: level2;
  content: counter(level1) "." counter(level2) ".";
}

/* Для третьего уровня */
ol > li > ol > li > ol {
  counter-reset: level3;
  margin: 0;
  padding: 0;
}
ol > li > ol > li > ol > li {

}
ol > li > ol > li > ol > li::before {
  left: -58px;
  counter-increment: level3;
  content: counter(level1) "." counter(level2) "." counter(level3) ".";
}
@media(max-width:992px) {
    .privacy-content-wrapper {
        flex-direction: column;
        gap:16px;
    }
    .privacy-content {
        width: 100%;
        padding: 16px 32px;
    }
    .privacy-content-wrapper .title {
        max-width: 392px;
        width: 100%;
        margin: 0;
    }
}
@media(max-width:576px) {
    .privacy-content {
        width: 100%;
        padding: 16px;
    }
}