.help-center-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.help-header {
  text-align: center;
  margin-bottom: 50px;
}

.help-header h1 {
  color: #274b9c;
  margin-bottom: 15px;
  font-size: 2.5em;
}

.help-header h1 i {
  margin-right: 15px;
  color: #274b9c;
}

.help-header p {
  color: #666;
  font-size: 1.2em;
}

.search-section {
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-box button {
  background: #274b9c;
  color: white;
  border: none;
  padding: 0 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-box button:hover {
  background: #5a6fd8;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category {
  padding: 12px 25px;
  background: #f8f9fa;
  border: 2px solid #e1e5e9;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category:hover {
  border-color: #274b9c;
  color: #274b9c;
}

.category.active {
  background: #274b9c;
  color: white;
  border-color: #274b9c;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  color: #333;
  font-size: 1.1em;
}

.faq-question i {
  color: #667eea;
  transition: transform 0.3s ease;
}

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

.faq-answer.active {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.support-section {
  text-align: center;
}

.support-card {
  background: #274b9c;
  color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.support-card i {
  font-size: 3em;
  margin-bottom: 20px;
}

.support-card h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
}

.support-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.support-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-button {
  background: white;
  color: #274b9c;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #667eea;
}

.support-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.support-button.secondary:hover {
  background: white;
  color: #667eea;
}

@media (max-width: 768px) {
  .help-header h1 {
    font-size: 2em;
  }

  .faq-categories {
    flex-direction: column;
    align-items: center;
  }

  .category {
    width: 200px;
    text-align: center;
  }

  .support-actions {
    flex-direction: column;
    align-items: center;
  }

  .support-button {
    width: 200px;
  }
}
