body {
  margin: 0;
  line-height: 1.2;
  color: var(--text-color);
  background-color: var(--gray-10);
}

.page-wrapper {
  display: flex;
  flex-direction: column;
}

.faq-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
  color: var(--primary-color);
}

.faq-container {
  width: 100%;
  max-width: 800px;
  padding: 0;
  margin-bottom: 30px;
}

.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section h2 {
  text-align: center;
  margin: 2rem 0;
  color: var(--text-color);
  font-size: 1.5rem;
}

.faq-card {
  background: var(--gray-10);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-answer ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style-type: decimal;
  color: var(--gray-600);
}

.faq-answer ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--anchor-color);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}