/* Page styling */
body {
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
  color: #212529;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
  color: #2c3e50;
}

h1 {
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 2px solid #d8c7b8;
  padding-bottom: 10px;
}

/* Shared section card styling */
.mindmap,
.valueprop,
.requirementsmapping,
.painpoints,
.benefits,
.competitivediff,
.synthesis,
.Ideaprioritization {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #dee2e6;
  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;
}

/* Lists */
ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 12px;
}

/* Subsection spacing */
h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

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

/* Optional hover effect for cards */
.mindmap:hover,
.valueprop:hover,
.requirementsmapping:hover,
.painpoints:hover,
.benefits:hover,
.competitivediff:hover,
.synthesis:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}

/* Responsive layout */
@media (min-width: 900px) {
  body {
    max-width: 1100px;
    margin: auto;
  }
}