.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/faq.jpg") center/cover no-repeat;
  filter: blur(4px) brightness(10%);
  -webkit-filter: blur(4px) brightness(20%);
  transform: scale(1);
}

p {
  font-size: 20px;
  text-align: left;
}

.about-exit {
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.about-exit:hover {
  opacity: 1;
  color: var(--accent);
}

.about-exit {
  font-size: 14px;
}


.navbar-exit {
  display: flex;
  padding: 0 5vw;
  align-items: center;
  justify-content: end;

  position: fixed !important;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 9999;

  background: rgba(18, 18, 18, 0.75); 
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);


  background-color: rgba(18, 18, 18, 0.75) !important;
}

.navbar-exit::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}


.navbar-exit > * { position: relative; z-index: 1; }

.container {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 5rem;
  gap: 1rem;
}

.title {
  font-size: 40px;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

/* animation stuff */
.qa-container {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.question {
  font-weight: 700;
}

.first {
  animation-delay: 0s;
}

.second {
  animation-delay: 0.2s;
}

.third {
  animation-delay: 0.4s;
}

.fourth {
  animation-delay: 0.6s;
}

.fifth {
  animation-delay: 0.8s;
}

.sixth {
  animation-delay: 1s;
}

.seventh {
  animation-delay: 1.2s;
}
.eighth {
  animation-delay: 1.4s;
}

@media (max-width: 640px) {
    .container {
        padding: 2rem;
    }
    .title {
        margin-top: 15vw;
    }
}