.faq-page {
  min-height: calc(100vh - 200px);
  padding: 90px 20px 40px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.faq-page,
.faq-page * {
  text-transform: none !important;
}

.faq-card {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 48px 36px;
}

.faq-title {
  margin: 0 0 32px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #16325c;
}

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

.faq-section:last-child {
  margin-bottom: 0;
}

.faq-category {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #16325c;
}

.faq-item {
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #16325c;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #16325c;
  background: none;
}

/* Override generic button hover styles from global CSS */
.faq-page button,
.faq-page button:hover,
.faq-page button:focus,
.faq-page button:active {
  background: none;
  box-shadow: none;
  outline: none;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 16px;
}

.faq-caret {
  font-size: 14px;
  color: #6a7b91;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-caret.open {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 16px 0;
  color: #6a7b91;
  font-size: 15px;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

.faq-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

.faq-link:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-card {
    padding: 32px 24px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-category {
    font-size: 18px;
  }

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

  .faq-answer {
    font-size: 14px;
  }
}

