/* FAQ Page Specific Styles */

.page-header {
  text-align: center;
  margin: 60px 0 40px;
}

.page-header-content h1 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 24px;
  color: #1976d2;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e3f2fd;
}

.faq-item {
  background: white;
  border-radius: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 400;
  color: #1976d2;
  transition: transform 0.3s;
}

.faq-item input[type="checkbox"]:checked + .faq-question .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #616161;
  margin: 0;
}

.contact-help {
  text-align: center;
  padding: 60px 40px;
  background: #02478dd5;
  border-radius: 36px;
  margin-top: 60px;
  color: white;
}

.contact-help h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-help p {
  font-size: 17px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.help-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-help {
  display: inline-block;
  background: white;
  color: #1976d2;
  padding: 12px 32px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-help-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 32px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid white;
  transition: transform 0.3s, background 0.3s;
}

.btn-help-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive FAQ Styles */
@media (max-width: 600px) {

  .content-section {
    padding: 20px;
  }

  .category-title {
    font-size: 20px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item input[type="checkbox"]:checked ~ .faq-answer {
    padding: 0 20px 16px;
  }

  .contact-help {
    padding: 40px 20px;
  }

  .contact-help h3 {
    font-size: 24px;
  }

  .help-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-help,
  .btn-help-secondary {
    width: 100%;
    max-width: 280px;
  }
}
