@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  
  /* Color Palette */
  --bg-main: #090D1A;
  --bg-card: rgba(17, 24, 39, 0.55);
  --bg-card-hover: rgba(23, 37, 84, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(124, 58, 237, 0.4);
  
  --primary-glow: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --secondary-glow: linear-gradient(135deg, #EC4899 0%, #7C3AED 100%);
  
  --color-text-main: #F3F4F6;
  --color-text-muted: #9CA3AF;
  
  /* DISC Colors */
  --color-d: #EF4444; /* Rouge - Dominance */
  --color-i: #F59E0B; /* Orange/Jaune - Influence */
  --color-s: #10B981; /* Vert - Stabilité */
  --color-c: #3B82F6; /* Bleu - Conformité */
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- RESET & GLOBAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--color-text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
  background-attachment: fixed;
}

/* --- UTILITIES & LAYOUT --- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.text-gradient {
  background: var(--primary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-secondary {
  background: var(--secondary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-elastic);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-glow);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* --- HEADER --- */
header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
  background: rgba(9, 13, 26, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFF;
}

.logo span {
  font-size: 1.8rem;
}

/* --- ONBOARDING SECTION --- */
#welcome-screen {
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

#welcome-screen h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

#welcome-screen p.subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.8rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- QUESTIONNAIRE WORKFLOW --- */
#questionnaire-screen {
  display: none;
  animation: slideIn 0.4s ease-out;
}

/* Progress bar system */
.progress-container {
  margin-bottom: 2.5rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.progress-header h3 {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar-wrapper {
  background: rgba(255, 255, 255, 0.05);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  background: var(--primary-glow);
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.question-card h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Interactive Input Options */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Select option card style */
.option-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.option-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.option-item.selected {
  background: rgba(124, 58, 237, 0.15);
  border-color: #7C3AED;
  box-shadow: inset 0 0 10px rgba(124, 58, 237, 0.1);
}

.option-checkbox-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-text-muted);
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.option-item.selected .option-checkbox-indicator {
  border-color: #06B6D4;
  background-color: #06B6D4;
}

.option-item.selected .option-checkbox-indicator::after {
  content: "✓";
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
}

.option-details {
  display: flex;
  flex-direction: column;
}

.option-label {
  font-weight: 600;
  font-size: 1.05rem;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

/* Rank option style */
.rank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.rank-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.rank-item.ranked {
  border-color: #7C3AED;
  background: rgba(124, 58, 237, 0.08);
}

.rank-item.ranked .rank-badge {
  background: var(--primary-glow);
  color: #FFF;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

/* Likert scale style */
.likert-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.likert-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-elastic);
}

.likert-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.likert-option.selected {
  background: rgba(124, 58, 237, 0.15);
  border-color: #7C3AED;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.likert-number {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.likert-option.selected .likert-number {
  color: #06B6D4;
}

.likert-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.likert-option.selected .likert-label {
  color: #FFF;
}

/* Controls buttons footer */
.question-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

/* --- RESULTS SCREEN --- */
#results-screen {
  display: none;
  animation: fadeIn 0.8s ease-out;
}

.results-header {
  text-align: center;
  margin-bottom: 3rem;
}

.results-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.results-header p {
  color: var(--color-text-muted);
}

/* DISC Profile card styling */
.disc-summary-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .disc-summary-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.disc-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.disc-radar-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.disc-info-panel h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.disc-info-panel .profile-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Profiles type color styles */
.tag-dominant { background-color: rgba(239, 68, 68, 0.2); color: #EF4444; border: 1px solid #EF4444; }
.tag-influent { background-color: rgba(245, 158, 11, 0.2); color: #F59E0B; border: 1px solid #F59E0B; }
.tag-stable { background-color: rgba(16, 185, 129, 0.2); color: #10B981; border: 1px solid #10B981; }
.tag-conforme { background-color: rgba(59, 130, 246, 0.2); color: #3B82F6; border: 1px solid #3B82F6; }

.disc-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.disc-attributes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.disc-attr-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
}

.disc-attr-item h4 {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.disc-attr-item p {
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- TOP 5 RECOMMENDATIONS (ACCORDIONS) --- */
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.rec-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.rec-item-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Accordion Header */
.rec-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.rec-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.rec-header-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-grow: 1;
}

.rec-rank-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.rec-item-card:nth-child(1) .rec-rank-circle { border-color: #EC4899; color: #EC4899; background: rgba(236, 72, 153, 0.1); }
.rec-item-card:nth-child(2) .rec-rank-circle { border-color: #7C3AED; color: #7C3AED; background: rgba(124, 90, 237, 0.1); }
.rec-item-card:nth-child(3) .rec-rank-circle { border-color: #3B82F6; color: #3B82F6; background: rgba(59, 130, 246, 0.1); }

.rec-title-group h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
}

.rec-meta-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.6rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  border: 1px solid var(--border-color);
}

.meta-tag-match {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.3);
}

.rec-chevron {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  margin-left: 1rem;
}

.rec-item-card.open .rec-chevron {
  transform: rotate(180deg);
}

/* Accordion Content */
.rec-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  border-top: 0px solid transparent;
}

.rec-item-card.open .rec-body {
  max-height: 1200px; /* Grande hauteur pour contenir l'ensemble du texte */
  border-top: 1px solid var(--border-color);
}

.rec-body-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rec-intro-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.rec-grid-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .rec-grid-details {
    grid-template-columns: 1fr;
  }
}

.rec-detail-block {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 16px;
}

.rec-detail-block h4 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rec-detail-block ul {
  list-style: none;
}

.rec-detail-block li {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rec-detail-block li::before {
  content: "✦";
  color: #06B6D4;
}

.rec-advice-box {
  background: rgba(124, 58, 237, 0.06);
  border-left: 4px solid #7C3AED;
  padding: 1.25rem;
  border-radius: 8px 16px 16px 8px;
}

.rec-advice-box h4 {
  color: #7C3AED;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.rec-advice-box p {
  font-size: 0.92rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

/* Official educational links styling */
.rec-links-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-link-official {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.link-parcoursup {
  background: rgba(0, 169, 137, 0.15);
  color: #00A989;
  border: 1px solid rgba(0, 169, 137, 0.3);
}

.link-parcoursup:hover {
  background: rgba(0, 169, 137, 0.25);
  transform: translateY(-1px);
}

.link-onisep {
  background: rgba(230, 46, 46, 0.12);
  color: #E62E2E;
  border: 1px solid rgba(230, 46, 46, 0.3);
}

.link-onisep:hover {
  background: rgba(230, 46, 46, 0.22);
  transform: translateY(-1px);
}

/* --- SELF REFLECTION & ACTION PLAN SECTION --- */
.dashboard-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .dashboard-extra-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Timeline of Parcoursup */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7C3AED;
  border: 3px solid var(--bg-main);
  transform: translateX(-50%);
}

.timeline-item.active .timeline-dot {
  background: #06B6D4;
  box-shadow: 0 0 10px #06B6D4;
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #06B6D4;
  letter-spacing: 0.5px;
}

.timeline-content h4 {
  font-size: 1rem;
  margin: 0.15rem 0 0.4rem 0;
  color: #FFF;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Self-Reflection Guide Cards */
.reflection-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reflection-accordion-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.reflection-card-header {
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.reflection-card-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFF;
}

.reflection-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.reflection-accordion-card.open .reflection-card-body {
  max-height: 400px;
  border-top: 1px solid var(--border-color);
}

.reflection-card-body-content {
  padding: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.reflection-card-body-content ul {
  list-style: none;
  margin-top: 0.5rem;
}

.reflection-card-body-content li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.reflection-card-body-content li::before {
  content: "→";
  color: #7C3AED;
}

/* Action section (restart, export pdf) */
.results-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
  flex-wrap: wrap;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- PRINT STYLE SHEETS (PDF EXPORT OPTIMIZATIONS) --- */
@media print {
  body {
    background-color: #FFFFFF !important;
    background-image: none !important;
    color: #111827 !important;
    font-size: 11pt !important;
  }
  
  header, 
  #welcome-screen, 
  #questionnaire-screen, 
  .results-action-buttons,
  .rec-chevron,
  .btn-link-official,
  .rec-header-left svg {
    display: none !important;
  }
  
  #results-screen {
    display: block !important;
  }
  
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .glass-panel {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  .disc-summary-card {
    grid-template-columns: 1.2fr 1fr !important;
    border-bottom: 2px solid #E5E7EB !important;
    padding-bottom: 2rem !important;
  }
  
  .disc-radar-svg {
    max-width: 250px !important;
  }
  
  .disc-info-panel h2 {
    color: #111827 !important;
  }
  
  .profile-tag {
    background-color: #F3F4F6 !important;
    color: #111827 !important;
    border: 1px solid #D1D5DB !important;
  }
  
  .rec-item-card {
    background: #FFFFFF !important;
    border: 1px solid #D1D5DB !important;
    margin-bottom: 1.5rem !important;
    page-break-inside: avoid !important;
  }
  
  .rec-header {
    background: #F9FAFB !important;
    border-bottom: 1px solid #E5E7EB !important;
    cursor: default !important;
  }
  
  .rec-title-group h3 {
    color: #111827 !important;
  }
  
  .rec-body {
    max-height: none !important;
    display: block !important;
  }
  
  .rec-detail-block {
    background: #F9FAFB !important;
    border: 1px solid #E5E7EB !important;
    color: #374151 !important;
  }
  
  .rec-detail-block h4 {
    color: #111827 !important;
  }
  
  .rec-advice-box {
    background: #F5F3FF !important;
    border-left: 4px solid #7C3AED !important;
  }
  
  .dashboard-extra-grid {
    grid-template-columns: 1fr 1fr !important;
    page-break-before: always !important;
    padding-top: 2rem !important;
  }
  
  .timeline {
    border-left-color: #E5E7EB !important;
  }
  
  .timeline-dot {
    border-color: #FFF !important;
  }
  
  .reflection-accordion-card {
    border-color: #E5E7EB !important;
    background: transparent !important;
  }
  
  .reflection-card-body {
    max-height: none !important;
  }
  
  .text-gradient, .text-gradient-secondary {
    background: none !important;
    -webkit-text-fill-color: #111827 !important;
    color: #111827 !important;
    font-weight: 800 !important;
  }
}
