.itmk-terms-site-content {
  padding-bottom: 56px;
  padding-top: 24px;
}

.itmk-terms-shell {
  align-items: flex-start;
  grid-template-columns: 270px minmax(0, 1fr);
}

.itmk-terms-page {
  color: var(--itmk-text, #111a24);
  min-width: 0;
}

.itmk-terms-hero {
  align-items: flex-end;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dfe5eb;
  border-radius: 0;
  box-shadow: none;
  color: var(--itmk-text, #111a24);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 0;
  padding: 4px 2px 22px;
}

.itmk-terms-hero::after {
  display: none;
}

.itmk-terms-hero-copy {
  max-width: 720px;
}

.itmk-terms-eyebrow {
  color: #ff6d77;
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.itmk-terms-hero h1 {
  color: var(--itmk-text, #111a24);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.itmk-terms-updated {
  align-items: center;
  background: #f3f6f8;
  border: 1px solid #dfe5eb;
  border-radius: 999px;
  color: #738194;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 12px;
}

.itmk-terms-updated time {
  color: #26384b;
  font-weight: 750;
}

.itmk-terms-summary {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  gap: 0;
  margin: 18px 0 22px;
  padding: 3px 0;
}

.itmk-terms-summary-mark {
  display: none;
}

.itmk-terms-summary .itmk-terms-panel-intro {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

.itmk-terms-summary .itmk-terms-panel-intro > p {
  color: #111a24;
  font-size: 13px;
  line-height: 1.58;
  margin: 0 0 6px;
}

.itmk-terms-summary .itmk-terms-panel-intro > p:last-child {
  margin-bottom: 0;
}

.itmk-terms-tabs {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dde4ea;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(17, 26, 36, 0.08);
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 22px;
  padding: 6px;
  position: sticky;
  top: 70px;
  z-index: 25;
}

.admin-bar .itmk-terms-tabs {
  top: 102px;
}

.itmk-terms-tab {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 11px;
  color: #607083;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  gap: 7px;
  justify-content: center;
  min-height: 46px;
  padding: 8px 9px;
  position: relative;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.itmk-terms-tab:hover {
  background: #eef2f6;
  color: #23364a;
}

.itmk-terms-tab.is-active {
  background: #111a24;
  box-shadow: 0 7px 16px rgba(17, 26, 36, 0.18);
  color: #fff;
}

.itmk-terms-tab:focus-visible {
  outline: 3px solid rgba(77, 103, 134, 0.32);
  outline-offset: 2px;
}

.itmk-terms-tab i {
  font-size: 15px;
}

.itmk-terms-panel {
  animation: itmk-terms-panel-in 0.24s ease;
  background: #f7f9fb;
  border: 1px solid #e0e6ec;
  border-radius: 22px;
  overflow: clip;
}

@keyframes itmk-terms-panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.itmk-terms-panel-head {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e2e7ec;
  display: flex;
  gap: 15px;
  padding: 24px 28px;
}

.itmk-terms-panel-head > span {
  align-items: center;
  background: #e9eff5;
  border-radius: 14px;
  color: #314b67;
  display: flex;
  flex: 0 0 46px;
  height: 46px;
  justify-content: center;
}

.itmk-terms-panel-head > span i {
  font-size: 20px;
}

.itmk-terms-panel-head h2 {
  color: #111a24;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.025em;
  margin: 0 0 3px;
}

.itmk-terms-panel-head p {
  color: #718092;
  font-size: 13px;
  margin: 0;
}

.itmk-terms-panel-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 205px minmax(0, 1fr);
  padding: 26px 28px 32px;
}

.itmk-terms-panel-layout.is-single-column {
  grid-template-columns: minmax(0, 1fr);
}

.itmk-terms-toc {
  align-self: start;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 190px);
  overflow: auto;
  padding: 14px 10px;
  position: sticky;
  top: 145px;
}

.admin-bar .itmk-terms-toc {
  top: 177px;
}

.itmk-privacy-page .itmk-terms-toc,
.admin-bar .itmk-privacy-page .itmk-terms-toc,
.itmk-cookie-page .itmk-terms-toc,
.admin-bar .itmk-cookie-page .itmk-terms-toc,
.itmk-ethics-page .itmk-terms-toc,
.admin-bar .itmk-ethics-page .itmk-terms-toc {
  max-height: none;
  overflow: visible;
  position: static;
  top: auto;
}

.itmk-terms-toc strong {
  color: #8a96a5;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding: 5px 9px 9px;
  text-transform: uppercase;
}

.itmk-terms-toc a {
  border-radius: 8px;
  color: #5d6c7d;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  padding: 7px 9px;
  text-decoration: none;
}

.itmk-terms-toc a:hover,
.itmk-terms-toc a:focus-visible {
  background: #eef2f6;
  color: #1f3348;
}

.itmk-terms-copy {
  min-width: 0;
}

.itmk-terms-panel-intro {
  background: #edf3f8;
  border: 0;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 15px 17px;
}

.itmk-terms-copy > .itmk-terms-panel-intro:empty {
  display: none;
}

.itmk-terms-panel-intro p {
  color: #111a24;
  font-size: 13px;
  line-height: 1.58;
  margin: 0 0 6px;
}

.itmk-terms-panel-intro p:last-child {
  margin-bottom: 0;
}

.itmk-terms-panel-intro ul {
  margin: 7px 0 10px;
  padding-left: 18px;
}

.itmk-terms-panel-intro li {
  color: #111a24;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 2px;
}

.itmk-terms-panel-intro li:last-child {
  margin-bottom: 0;
}

.itmk-terms-rule {
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 15px;
  margin-bottom: 12px;
  padding: 20px 22px;
  scroll-margin-top: 160px;
}

.admin-bar .itmk-terms-rule {
  scroll-margin-top: 192px;
}

.itmk-terms-rule:last-child {
  margin-bottom: 0;
}

.itmk-terms-rule h3 {
  color: #142131;
  font-size: 17px;
  font-weight: 820;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 12px;
}

.itmk-privacy-subheading {
  color: #24394f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin: 15px 0 7px;
}

.itmk-terms-rule h3 + .itmk-privacy-subheading {
  margin-top: 2px;
}

.itmk-cookie-category-rule h3 {
  color: #314b67;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.itmk-cookie-provider {
  color: #24394f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin: 15px 0 7px;
}

.itmk-cookie-category-rule h3 + .itmk-cookie-provider {
  margin-top: 2px;
}

.itmk-cookie-category-rule p > strong:first-child {
  background: #edf3f8;
  border: 1px solid #dbe5ee;
  border-radius: 7px;
  color: #24394f;
  display: table;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 3px 0 5px;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 4px 8px;
}

.itmk-terms-rule p {
  color: #111a24;
  font-size: 13px;
  line-height: 1.58;
  margin: 0 0 6px;
}

.itmk-terms-rule p:last-child {
  margin-bottom: 0;
}

.itmk-terms-rule strong,
.itmk-terms-panel-intro strong {
  color: #24394f;
  font-weight: 800;
}

.itmk-terms-rule a,
.itmk-terms-panel-intro a {
  color: #2f5f91;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.itmk-terms-rule ul {
  display: grid;
  gap: 3px;
  list-style: none;
  margin: 7px 0 10px;
  padding: 0;
}

.itmk-terms-rule li {
  color: #111a24;
  font-size: 13px;
  line-height: 1.55;
  padding-left: 19px;
  position: relative;
}

.itmk-terms-rule li::before {
  background: #4d6786;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 2px;
  position: absolute;
  top: 0.62em;
  width: 6px;
}

.itmk-editorial-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itmk-editorial-info-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 12px;
}

.itmk-editorial-info-card {
  margin-bottom: 0;
  min-width: 0;
  padding: 16px;
}

.itmk-editorial-info-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.itmk-editorial-info-card p,
.itmk-editorial-info-card a {
  overflow-wrap: anywhere;
}

.itmk-editorial-person {
  align-items: flex-start;
  background: #f7f9fb;
  border: 1px solid #e2e7ec;
  border-radius: 12px;
  display: flex;
  gap: 11px;
  min-width: 0;
  padding: 13px;
}

.itmk-editorial-person-icon {
  align-items: center;
  background: #e7eef5;
  border-radius: 10px;
  color: #314b67;
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
}

.itmk-editorial-person > div {
  min-width: 0;
}

.itmk-editorial-person h4 {
  color: #142131;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
  margin: 1px 0 2px;
}

.itmk-editorial-person p {
  color: #718092;
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

.itmk-editorial-person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 7px;
}

.itmk-editorial-person-actions a {
  align-items: center;
  color: #2f5f91;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 5px;
  min-width: 0;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.itmk-editorial-person-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.itmk-editorial-author-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.itmk-editorial-author {
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.itmk-editorial-author:hover {
  border-color: #bdcbd8;
  box-shadow: 0 7px 18px rgba(17, 26, 36, 0.08);
  transform: translateY(-1px);
}

.itmk-editorial-avatar {
  border-radius: 50%;
  flex: 0 0 48px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.itmk-editorial-author > span {
  display: block;
  min-width: 0;
}

.itmk-editorial-author strong,
.itmk-editorial-author small {
  display: block;
}

.itmk-editorial-author strong {
  color: #142131;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.itmk-editorial-author small {
  color: #718092;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  margin-top: 3px;
}

.itmk-editorial-legal-link {
  align-items: center;
  background: #f7f9fb;
  border: 1px solid #e2e7ec;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  padding: 13px;
  text-decoration: none;
}

.itmk-editorial-legal-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itmk-editorial-legal-link > span:first-child {
  align-items: center;
  background: #e7eef5;
  border-radius: 10px;
  color: #314b67;
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
}

.itmk-editorial-legal-link > span:nth-child(2) {
  display: block;
  min-width: 0;
}

.itmk-editorial-legal-link strong,
.itmk-editorial-legal-link small {
  display: block;
}

.itmk-editorial-legal-link strong {
  font-size: 13px;
}

.itmk-editorial-legal-link small {
  color: #718092;
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
}

.itmk-editorial-legal-link > i {
  margin-left: auto;
}

.itmk-terms-contact {
  background: #111a24;
  border-radius: 22px;
  color: #fff;
  display: grid;
  gap: 20px 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  margin-top: 22px;
  overflow: hidden;
  padding: 30px 32px;
  position: relative;
}

.itmk-terms-contact::after {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
  height: 190px;
  position: absolute;
  right: -60px;
  top: -95px;
  width: 190px;
}

.itmk-terms-contact h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 820;
  margin: 0 0 8px;
}

.itmk-terms-contact > div > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.itmk-terms-contact-actions {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.itmk-terms-contact-actions > a,
.itmk-terms-contact-actions > span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: #fff;
  display: flex;
  font-size: 11px;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  text-decoration: none;
}

.itmk-terms-contact-actions > a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.itmk-terms-contact-actions i {
  color: #ff6d77;
  flex: 0 0 auto;
  font-size: 17px;
}

.itmk-terms-contact-actions span span {
  min-width: 0;
}

.itmk-terms-contact-actions small {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.itmk-terms-privacy-note {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 17px;
}

.itmk-terms-privacy-note a {
  color: #fff;
  font-weight: 700;
}

[data-bs-theme="dark"] .itmk-terms-panel,
[data-bs-theme="dark"] .itmk-terms-tabs {
  border-color: #2d3742;
}

[data-bs-theme="dark"] .itmk-terms-hero {
  border-bottom-color: #303944;
}

[data-bs-theme="dark"] .itmk-terms-hero h1 {
  color: #f2f5f7;
}

[data-bs-theme="dark"] .itmk-terms-updated {
  background: #191f26;
  border-color: #303944;
  color: #9da9b6;
}

[data-bs-theme="dark"] .itmk-terms-updated time {
  color: #f2f5f7;
}

[data-bs-theme="dark"] .itmk-terms-summary {
  background: transparent;
}

[data-bs-theme="dark"] .itmk-terms-summary .itmk-terms-panel-intro {
  background: transparent;
}

[data-bs-theme="dark"] .itmk-terms-summary .itmk-terms-panel-intro > p,
[data-bs-theme="dark"] .itmk-terms-panel-intro p,
[data-bs-theme="dark"] .itmk-terms-panel-intro li,
[data-bs-theme="dark"] .itmk-terms-rule p,
[data-bs-theme="dark"] .itmk-terms-rule li {
  color: #aeb8c4;
}

[data-bs-theme="dark"] .itmk-terms-tabs {
  background: rgba(20, 25, 31, 0.94);
}

[data-bs-theme="dark"] .itmk-terms-tab {
  color: #aab5c1;
}

[data-bs-theme="dark"] .itmk-terms-tab:hover {
  background: #242d37;
  color: #fff;
}

[data-bs-theme="dark"] .itmk-terms-tab.is-active {
  background: #f1f4f7;
  color: #111a24;
}

[data-bs-theme="dark"] .itmk-terms-panel {
  background: #12171d;
}

[data-bs-theme="dark"] .itmk-terms-panel-head,
[data-bs-theme="dark"] .itmk-terms-toc,
[data-bs-theme="dark"] .itmk-terms-rule {
  background: #191f26;
  border-color: #2c3540;
}

[data-bs-theme="dark"] .itmk-terms-panel-head {
  border-bottom-color: #2c3540;
}

[data-bs-theme="dark"] .itmk-terms-panel-head > span,
[data-bs-theme="dark"] .itmk-terms-panel-intro {
  background: #232d38;
}

[data-bs-theme="dark"] .itmk-terms-panel-head h2,
[data-bs-theme="dark"] .itmk-terms-rule h3,
[data-bs-theme="dark"] .itmk-privacy-subheading,
[data-bs-theme="dark"] .itmk-cookie-provider,
[data-bs-theme="dark"] .itmk-terms-rule strong,
[data-bs-theme="dark"] .itmk-terms-panel-intro strong {
  color: #f2f5f7;
}

[data-bs-theme="dark"] .itmk-terms-rule a,
[data-bs-theme="dark"] .itmk-terms-panel-intro a {
  color: #9dc6ee;
}

[data-bs-theme="dark"] .itmk-cookie-category-rule p > strong:first-child {
  background: #232d38;
  border-color: #344150;
  color: #dce9f6;
}

[data-bs-theme="dark"] .itmk-editorial-person,
[data-bs-theme="dark"] .itmk-editorial-legal-link {
  background: #202832;
  border-color: #303b47;
}

[data-bs-theme="dark"] .itmk-editorial-person-icon,
[data-bs-theme="dark"] .itmk-editorial-legal-link > span:first-child {
  background: #2a3744;
  color: #b7d4ee;
}

[data-bs-theme="dark"] .itmk-editorial-person h4,
[data-bs-theme="dark"] .itmk-editorial-author strong,
[data-bs-theme="dark"] .itmk-editorial-legal-link strong {
  color: #f2f5f7;
}

[data-bs-theme="dark"] .itmk-editorial-person p,
[data-bs-theme="dark"] .itmk-editorial-author small,
[data-bs-theme="dark"] .itmk-editorial-legal-link small {
  color: #a2aebb;
}

[data-bs-theme="dark"] .itmk-editorial-person-actions a {
  color: #9dc6ee;
}

[data-bs-theme="dark"] .itmk-editorial-author:hover {
  border-color: #526273;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .itmk-terms-panel-head p,
[data-bs-theme="dark"] .itmk-terms-toc a {
  color: #9ba7b4;
}

[data-bs-theme="dark"] .itmk-terms-toc a:hover,
[data-bs-theme="dark"] .itmk-terms-toc a:focus-visible {
  background: #242d37;
  color: #fff;
}

@media (min-width: 1200px) and (max-width: 1359.98px) {
  .itmk-terms-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .itmk-terms-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    top: auto;
  }

  .admin-bar .itmk-terms-tabs {
    top: auto;
  }
}

@media (max-width: 1199.98px) {
  .itmk-terms-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .itmk-terms-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
    top: auto;
  }

  .admin-bar .itmk-terms-tabs {
    top: auto;
  }

  .itmk-terms-toc {
    top: 85px;
  }

  .admin-bar .itmk-terms-toc {
    top: 117px;
  }

  .itmk-editorial-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .itmk-terms-site-content {
    padding-bottom: 32px;
    padding-top: 12px;
  }

  .itmk-terms-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    min-height: 0;
    padding: 2px 0 18px;
  }

  .itmk-terms-hero h1 {
    font-size: 30px;
  }

  .itmk-terms-summary {
    padding: 2px 0;
  }

  .itmk-terms-tabs {
    display: flex;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none;
  }

  .itmk-terms-tabs::-webkit-scrollbar {
    display: none;
  }

  .itmk-terms-tab {
    flex: 0 0 auto;
    min-width: 122px;
  }

  .itmk-terms-panel {
    border-radius: 18px;
  }

  .itmk-terms-panel-head {
    padding: 20px;
  }

  .itmk-terms-panel-head h2 {
    font-size: 21px;
  }

  .itmk-terms-panel-layout {
    display: block;
    padding: 18px;
  }

  .itmk-terms-toc {
    display: none;
  }

  .itmk-terms-rule {
    padding: 18px;
    scroll-margin-top: 82px;
  }

  .itmk-editorial-grid {
    grid-template-columns: 1fr;
  }

  .itmk-editorial-info-grid {
    grid-template-columns: 1fr;
  }

  .itmk-editorial-legal-grid {
    grid-template-columns: 1fr;
  }

  .itmk-terms-contact {
    display: block;
    padding: 25px 22px;
  }

  .itmk-terms-contact-actions {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .itmk-terms-privacy-note {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .itmk-terms-panel {
    animation: none;
  }

  .itmk-terms-tab {
    transition: none;
  }
}

@media print {
  .comm-sidebar,
  .itmk-terms-tabs,
  .itmk-terms-toc,
  .itmk-terms-contact-actions,
  #masthead,
  footer {
    display: none !important;
  }

  .itmk-terms-panel[hidden] {
    display: block !important;
  }

  .itmk-terms-panel,
  .itmk-terms-rule,
  .itmk-terms-contact,
  .itmk-terms-hero {
    background: #fff !important;
    border-color: #ccc !important;
    box-shadow: none !important;
    color: #000 !important;
  }

  .itmk-terms-panel {
    break-before: page;
    margin-top: 20px;
  }

  .itmk-terms-hero h1,
  .itmk-terms-contact h2,
  .itmk-terms-rule h3,
  .itmk-terms-panel-head h2 {
    color: #000 !important;
  }
}
