/* --- Fix the logo slider --- */
.version-9u475 .logos{
  width: 100% !important;
  overflow: hidden;
}

.version-9u475 .slider-horizontal{
  width: 100% !important;
  margin-right: 0 !important;
  overflow: hidden;
  white-space: nowrap;
}

/* Make the belt size to content and animate */
.version-9u475 .change-to-your-logos-here{
  display: inline-flex !important;
  width: max-content !important;
  gap: 60px !important;
  animation: scroll-logos 120s linear infinite !important;
  will-change: transform;
}

/* Kill the exported negative offsets */
.version-9u475 .logo-box{
  margin-left: 0 !important;
  flex: 0 0 auto;
}

/* Seamless loop (you already duplicated the logos) */
@keyframes scroll-logos{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Optional: ignore reduced-motion overrides specifically for this belt */
@media (prefers-reduced-motion: reduce){
  .version-9u475 .change-to-your-logos-here{
    animation: scroll-logos 60s linear infinite !important;
  }
}

/* FAQ accordion */
.service-6 .frame-427321459 {
  overflow: hidden;
  max-height: 0;          /* collapsed by default */
  opacity: 0;
  transition: max-height .3s ease, opacity .25s ease;
}

.service-6 .frame-4273214-5.open .frame-427321459 {
  /* max-height is set inline by JS to the content height */
  opacity: 1;
}

.service-6 .question { cursor: pointer; }
.service-6 .outlineup-chevron { transition: transform .25s ease; }
.service-6 .frame-4273214-5.open .outlineup-chevron { transform: rotate(180deg); }

/* FAQ accordion: collapsed by default */
.service-6 .frame-427321459 {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .2s ease;
}

.service-6 .frame-4273214-5.open .frame-427321459 {
  opacity: 1;
}

.service-6 .question { cursor: pointer; }
.service-6 .outlineup-chevron { transition: transform .25s ease; }
.service-6 .frame-4273214-5.open .outlineup-chevron { transform: rotate(180deg); }
