/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #222;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.navbar nav a:hover {
  text-decoration: underline;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: #f1f1f1;
  padding: 15px;
  font-size: 1rem;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e1e1e1;
}

.faq-answer {
  display: none;
  padding: 10px 15px;
  font-size: 0.95rem;
  color: #555;
  background: #fafafa;
}

.faq-question.active {
  background: #007bff;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 100px;
  background: #222;
}

footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
