body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0b0c10, #1f2833);
  color: #fff;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px #45a29e;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.menu-item {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(69, 162, 158, 0.5);
  color: #fff;
  text-decoration: none;
}

.menu-item:hover {
  background: rgba(69, 162, 158, 0.3);
  transform: scale(1.05);
  box-shadow: 0 0 20px #66fcf1;
}

.faq-section {
  margin: 40px auto;
  width: 80%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

h2 {
  color: #66fcf1;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  color: #66fcf1;
}

.faq-question:hover {
  text-decoration: underline;
}

.faq-answer {
  display: none;
  margin-left: 20px;
  color: #ccc;
}

.faq-answer.show {
  display: block;
}

.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #45a29e;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 0 20px #66fcf1;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.floating:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #00e5ff;
}
