/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

/* Header */
.header {
  background: #4A90E2;
  color: white;
  text-align: center;
  padding: 20px;
}

.header h1 {
  margin: 0;
  font-size: 28px;
}

.header p {
  font-size: 14px;
  opacity: 0.8;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

.question {
  font-size: 20px;
  color: #4A90E2;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.answer {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
  display: none; /* Hidden by default */
}

.faq-item.active .answer {
  display: block;
}

.faq-item:hover {
  background: #f1f1f1;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  background: #4A90E2;
  color: white;
  margin-top: 20px;
}

.footer p {
  margin: 0;
  font-size: 14px;
}
