.quest-toggle {
	text-decoration: none;
	color: #000000;
	background-color: #ff6b35;
	border: 2px solid #e55a2b;
	background: #FF9900;
	padding: 0 6px;
	font-size: inherit;
}

.quest-toggle:hover {
  color: #FF9900; /* Темнее при наведении */
  background-color: rgba(255, 107, 53, 0.1); /* Легкий оранжевый фон при наведении */
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.quest-toggle[aria-expanded="true"] .arrow {
  transform: rotate(180deg); 
}

.ulh {
  list-style: none;
  padding-left: 20px; 
}

html {
  scroll-behavior: smooth;
}


.scroll-to-top {
  display: none; 
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #FF9900;
  color: #000000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
  opacity: 0.8;
  background-color: #e55a2b;
}

.scroll-to-top.show {
  display: block;
}


a[href^="#"] {
  color: #FF9900;
  text-decoration: none;
}

a[href^="#"]:hover {
  color: #e55a2b; 
  text-decoration: underline;
}
