/* =============================================
   help_center.css
   (Matches 1200 px container & spacing used elsewhere)
   ============================================= */

/* Make the page stretch full height */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 
   Container: center content, cap at 1200 px
   Used for Help Center content
*/
.help-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px; /* vertical + horizontal padding */
  box-sizing: border-box;
  background-color: #ffffff;
}

/* Section background remains white */
.help-section {
  background-color: #ffffff;
}

/* Main title (h1) */
.help-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333333;
}

/* Subtitle (h2-like) */
.help-subtitle {
  font-size: 1.2rem;
  color: #555555;
  text-align: center;
  margin-bottom: 30px;
}

/* FAQ items */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  text-align: left;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}

.faq-question:hover,
.faq-question.active {
  color: #0066cc;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 200px; /* or large value to accommodate text */
}

.faq-answer p {
  margin: 10px 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444444;
}

/* Contact section */
.contact-section {
  margin-top: 40px;
}

.contact-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333333;
}

.contact-section p {
  font-size: 1rem;
  color: #444444;
  margin-bottom: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 20px;
  color: #444444;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-list a {
  color: #0066cc;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Feedback section */
.feedback-section {
  margin-top: 40px;
  text-align: center;
}

.feedback-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333333;
}

.feedback-section p {
  font-size: 1rem;
  color: #444444;
  margin-bottom: 15px;
}

.feedback-link a {
  font-size: 1rem;
  color: #ffffff;
  background-color: #0066cc;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
}

.feedback-link a:hover {
  background-color: #0055aa;
}

/* Footer push (so footer sits at bottom if content is short) */
.page-container > *:last-child {
  margin-top: auto;
}
