codecraft-web-project-footer {
    display: none !important;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  line-height: 1.7;
  margin: 0;
  padding: 40px 20px;
}

.empathize-page {
  max-width: 1000px;
  margin: 0 auto;
}

.header-banner {
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -5px rgba(5, 150, 105, 0.4);
}

.header-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.vision-topic-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 50px;
}

.assumptions-section > h2,
.interviews-section > h2,
.empathy-mapping-section > h2 {
  font-size: 1.75rem;
  color: #f8fafc;
  margin-top: 50px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 800;
}

.assumptions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Interview Profile Cards */
.interview-profile-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.interview-profile-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #34d399;
  margin-top: 0;
  margin-bottom: 8px;
}

.interview-meta {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #334155;
}

/* Container for Q&A items stacked vertically */
.interview-qa-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Styling for individual Q&A cards */
.qa-card {
  background: #1e293b;
  padding: 24px 30px;
  border-radius: 16px;
  border: 1px solid #334155;
  border-left: 5px solid #10b981;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease-in-out;
}

.qa-card:hover, 
.qa-card:focus {
  transform: translateY(-4px);
  border-color: #475569;
  border-left-color: #34d399;
  box-shadow: 0 12px 20px -5px rgba(16, 185, 129, 0.2);
  outline: none;
}

.qa-card .question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #34d399;
  margin-top: 0;
  margin-bottom: 10px;
}

.qa-card .answer {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
}

/* Empathy Map Image Styling */
.image-container {
  background: #1e293b;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #334155;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.empathy-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.school-card, 
.notebook-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #334155;
  border-left: 5px solid #10b981;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease-in-out;
}

.school-card:hover, 
.notebook-card:hover, 
.notebook-card:focus {
  transform: translateY(-6px);
  border-color: #475569;
  border-left-color: #34d399;
  box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.2);
  outline: none;
}

.school-card h2, 
.notebook-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #34d399;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: left;
}

.school-card p, 
.notebook-card p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-topic-stack {
    flex-direction: column;
  }
}