body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: radial-gradient(ellipse at center, #102324, #000);
  color: #f0f0f0;
}

.page-container {
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 130px;

}

.page-title {
  text-align: center;
  font-size: 3.5em;
  font-family: 'Cinzel Decorative', serif;
  color: #a0d8ef;
  text-shadow: 0 0 20px #00ffffa1;
  margin-bottom: 50px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #00ffff33;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 10px #00ffff22;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #a0d8ef;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  padding: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Cinzel Decorative', serif;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 255, 255, 0.05);
}

.faq-answer {
  display: none;
  padding: 10px 20px 20px 20px; /* Added top padding */
  color: #ccc;
  line-height: 1.6;
}


.brinth-divider {
  width: 80%;
  height: 2px;
  margin: 60px auto;
  border: none;
  background: linear-gradient(to right, #00ffff10, #00ffff98, #00ffff10);
  box-shadow: 0 0 12px #00ffff44, 0 0 24px #00ffff22;
  animation: pulse-glow 3s infinite ease-in-out;
}

.footMenuWrap {
  display: flex;
  justify-content: center;
  gap: 200px;
  padding-bottom: 50px;
  text-align: left;
  flex-wrap: wrap;
}

.footMenuWrap ul {
  list-style: none;
  padding: 0;
}

.footMenuWrap li h5 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #eee;
  letter-spacing: 1px;
  font-weight: 500;
}

.footMenuWrap li a {
  color: #818181;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  font-size: 13px;
}

.footMenuWrap li a:hover {
  color: #fff;
}

#slogan {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  color: #aaa;
  font-size: 1em;
}

footer {
  text-align: center;
  padding: 20px;
  color: #555;
  font-size: 0.9em;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 6px #00ffff22, 0 0 12px #00ffff11; }
  50% { box-shadow: 0 0 16px #00ffff66, 0 0 32px #00ffff44; }
  100% { box-shadow: 0 0 6px #00ffff22, 0 0 12px #00ffff11; }
}
