/* секция О НАС (отдельные размеры как ты задал) */
#about{ border-top:1px solid #cfcfcf; padding-top:46px; margin-top:46px; }
.about-title{
  text-transform:uppercase;
  font-size:clamp(12px,4.5vw,24px);
  letter-spacing:.02em; margin-bottom:12px;
}
.about-text{
  font-size:clamp(9px,2.2vw,14px);
  line-height:1.35; max-width:600px;
}

/* стрелка сразу после блока текста */
.section-scroll-hint{
  display:flex; align-items:center; justify-content:center;
  width:22px; height:22px; margin:16px auto 10px;
  color:#111; text-decoration:none; opacity:.85;
  animation:scroll-bounce-about 1.6s infinite ease-in-out;
}
.scroll-arrow{ width:100%; height:100%; }
@keyframes scroll-bounce-about{
  0%,100%{ transform:translateY(0) } 50%{ transform:translateY(4px) }
}

/* один разделитель ниже стрелки */
.section-divider{
  border:0; height:1px; width:100%; background:#d6d6d6;
}
