#t-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: rgba(243, 241, 235, 0.7);
    backdrop-filter: blur(12px);
}


/* accordion */

#rec1359714551 .t396__artboard {
    height: auto !important;
}

.accordion {
    cursor: pointer;
    user-select: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-icon {
    transition: transform 0.2s ease-out;
}

.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

/* Современный способ — отступ при прокрутке к якорю */
a[name] {
  display: block;            /* чтобы якорь занимал строку */
  scroll-margin-top: 80px;   /* смещение под фиксированный хедер */
}

/* Полифилл: работает даже там, где scroll-margin-top игнорируется */
a[name]:target::before {
  content: "";
  display: block;
  height: 80px;              /* желаемый отступ сверху */
  margin-top: -80px;         /* компенсируем, чтобы не ломать поток */
  visibility: hidden;
  pointer-events: none;
}