#scroll-container {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.snap-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  //*justify-content: center;*//
}

#dot-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: solid 1px #f43c3b;
  background: rgba(255, 255, 255, 0.4);
  display: block;
  position: relative;
  transition: background 0.3s;
  margin-bottom: 24px;
}

/* Активна крапка */
.dot.active {
  background: #f43c3b;
}

/* Текст біля кожної крапки */
.dot::after {
  content: attr(data-label);
  position: absolute;
  right: 150%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 16px;
  font-weight: normal;
  color: #7a7a7a;
  transition: color 0.3s, font-weight 0.3s;
}

/* Текст активної крапки: жирний і червоний */
.dot.active::after {
  color: #f43c3b;
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
}