/* Page background + default font */
body {
  background-color: #f8f9fa;   /* same as homepage */
  font-family: Arial, sans-serif;
  color: #333333;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

/* Accessible headings */
h1, h2 {
  color: #2c3e50;   /* same as homepage */
}

h1 {
  border-bottom: 2px solid #d8c7b8;
  padding-bottom: 8px;
}

/* Main section cards */
.aifeedback,
.questionsasked,
.summary,
.usertest,
.synthesis,
.changes{
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Paragraph spacing */
p {
  margin-bottom: 15px;
}

/* Interview separators */
hr {
  border: none;
  border-top: 1px solid #d8c7b8;
  margin: 20px 0;
}

/* Bold labels in interview */
b {
  color: #7a1f1f;
}

/* Image styling */
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  border: 2px solid #d8c7b8;
}

/* Optional: make all sections align nicely on wider screens */
@media (min-width: 900px) {
  body {
    max-width: 1000px;
    margin: auto;
  }
}