/* General Reset */
:root {
  --primary: #0070f3;
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --bg-light: #f9fbfe;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  color: #333;
  line-height: 1.6;
}

/* Main Help Page */
.help-page {
  max-width: 95%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.help-page h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2b7de9;
  font-size: 2.2rem;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-in-out;
}

.contact-section h3 {
  margin-bottom: 1rem;
  color: #222;
}

.contact-section p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.contact-section a {
  color: #2b7de9;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1.1s ease-in-out;
}

.faq-section h3 {
  margin-bottom: 1.5rem;
  color: #222;
}

.faq {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  color: #2b7de9;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

/* .faq-question::after {
  content: '➤';
  margin-left: auto;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
} */

.faq-question.open::after {
  transform: rotate(-90deg);
}

.faq-answer {
  display: none;
  padding-top: 0.7rem;
  font-size: 0.95rem;
  color: #444;
  animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  } */

  .help-page {
    margin-top: 1.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    text-align: left;
  }

  .faq-answer {
    font-size: 0.8rem;
  }
  
  .help-page h2 {
    font-size: 1.5rem;
  }
}
