html {
  scroll-padding-top: 100px;
}
.rodo .terms-sidebar {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.rodo .terms-sidebar h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.rodo .terms-sidebar .toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rodo .terms-sidebar .toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.88rem;
  transition: all 0.3s;
}
.rodo .terms-sidebar .toc-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}
.rodo .terms-sidebar .toc-item .toc-num {
  font-weight: 700;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  min-width: 20px;
}
@media (max-width: 992px) {
  .rodo .terms-sidebar {
    position: static;
    margin-bottom: 10px;
  }
  .rodo .terms-sidebar .toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .rodo .terms-sidebar .toc-item {
    padding: 6px 14px;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 20px;
    font-size: 0.82rem;
  }
  .rodo .terms-sidebar .toc-item .toc-num {
    display: none;
  }
}




.rodo .terms-body .terms-block {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}
.rodo .terms-body .terms-block:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}
.rodo .terms-body .terms-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .rodo .terms-body .terms-block {
    padding: 20px;
  }
}
.rodo .terms-body .terms-block .block-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.rodo .terms-body .terms-block .block-heading .block-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.rodo .terms-body .terms-block .block-heading h3 {
  font-size: 1.35rem;
  margin: 0;
}
.rodo .terms-body .terms-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 14px;
}
.rodo .terms-body .terms-block p:last-child {
  margin-bottom: 0;
}
.rodo .terms-body .terms-block .disclaimer-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 22px;
  border-radius: 10px;
}
.rodo .terms-body .terms-block .disclaimer-card .disclaimer-lead {
  font-weight: 600;
  margin-bottom: 12px;
}
.rodo .terms-body .terms-block .disclaimer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rodo .terms-body .terms-block .disclaimer-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}
.rodo .terms-body .terms-block .disclaimer-card ul li:last-child {
  margin-bottom: 0;
}
.rodo .terms-body .terms-block .disclaimer-card ul li::before {
  content: "–";
  position: absolute;
  left: 4px;
  color: var(--accent-color);
  font-weight: 700;
}
.table {
  font-size: 14px;
  text-align: justify;
  color: color-mix(in srgb, var(--default-color), transparent 20%) !important;
  line-height: 1.75;
}