.faq-page {
  padding: 24px 0;
}

.page-title {
  text-align: center;
  margin-bottom: 32px;
}

.page-title h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
}

.page-title p {
  color: #666;
}

.search-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 30px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: #D50036;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #D50036;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
}

.search-results {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  display: none;
}

.search-results.active {
  display: block;
}

.search-count {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.faq-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #D50036;
  padding-bottom: 12px;
  border-bottom: 2px solid #D50036;
}

.section-toggle {
  font-size: 14px;
  color: #D50036;
  cursor: pointer;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #D50036;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: #D50036;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 12px;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

.show-more {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #eee;
}

.show-more-btn {
  background: none;
  border: none;
  color: #D50036;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
}

.show-more-btn:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.page-btn {
  padding: 8px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.page-btn:hover:not(:disabled) {
  border-color: #D50036;
  color: #D50036;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  font-size: 14px;
  color: #666;
  margin: 0 12px;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: #999;
}

@media (max-width: 768px) {
  .faq-page {
    padding: 16px;
  }
  
  .faq-section,
  .search-section {
    padding: 16px;
  }
  
  .page-title h1 {
    font-size: 24px;
  }