/* css styles */

.q-header {
  background-color: var(--bg-light);
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.q-header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-primary);
}
.q-header p {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  color: var(--text-secondary);
}
.q-listing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.q-listing-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}
.q-listing-item:last-child {
  border-bottom: none;
}
.q-listing-item h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  color: var(--color-primary);
}
.q-listing-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
}
.q-listing-item a {
  color: var(--color-primary);
  text-decoration: none;
}
.q-listing-item a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.q-footer {
  background-color: var(--bg-light);
  border-top: 1px solid #e0e0e0;
  padding: 1rem 0;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
/* End of css styles */