/* Match your existing clean, professional style */
:root {
  --primary: #1a365d; /* Your dark blue */
  --secondary: #2d3748; /* Your dark gray */
  --accent: #4299e1; /* Your light blue */
  --light: #f7fafc;
  --border: #e2e8f0;
  --text: #2d3748;
}

/* Article Body Styles */
.article-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.article-body h2 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.article-body h3 {
  color: var(--secondary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.article-body h4 {
  color: var(--secondary);
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

/* Introduction */
.article-intro {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 25px 0;
  font-size: 18px;
  line-height: 1.6;
}

/* Key Insight */
.key-insight {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  border-radius: 4px;
  padding: 20px;
  margin: 25px 0;
}

.key-insight h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  color: #276749;
}

.key-insight h3 i {
  color: #38a169;
}

/* Comparison Section */
.comparison-section {
  margin: 30px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
  background: white;
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.comparison-header h4 {
  margin: 0;
  font-size: 18px;
  color: var(--primary);
}

.comparison-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.comparison-tag.negative {
  background: #fed7d7;
  color: #c53030;
}

.comparison-tag.positive {
  background: #c6f6d5;
  color: #276749;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
}

.comparison-list i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  margin-top: 3px;
}

/* Core Principle */
.core-principle {
  display: flex;
  gap: 20px;
  background: #ebf8ff;
  border-left: 4px solid var(--accent);
  padding: 25px;
  margin: 30px 0;
  align-items: flex-start;
}

.principle-icon {
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.principle-content h3 {
  margin-top: 0;
  color: var(--primary);
}

/* Market Facts */
.market-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.fact-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
}

.fact-icon {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.fact-content h4 {
  margin: 0 0 8px 0;
  color: var(--primary);
}

.fact-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* Mental Shift Steps */
.mental-shift-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.step {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 8px 0;
  color: var(--primary);
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* Key Takeaways */
.key-takeaways {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 25px;
  margin: 40px 0;
}

.key-takeaways h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  color: var(--primary);
}

.key-takeaways ul {
  padding-left: 20px;
  margin: 15px 0 0 0;
}

.key-takeaways li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Practical Application */
.practical-application {
  margin: 30px 0;
}

.exercise-box {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  border-radius: 4px;
  padding: 25px;
}

.exercise-box ol {
  padding-left: 20px;
  margin: 15px 0;
}

.exercise-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.exercise-note {
  background: #e6fffa;
  border-left: 3px solid #38b2ac;
  padding: 12px 15px;
  margin: 20px 0 0 0;
  font-size: 14px;
}

.exercise-note i {
  color: #38b2ac;
  margin-right: 8px;
}

/* Sidebar Assessment */
.assessment-box {
  padding: 15px 0;
}

.assessment-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.assessment-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.assessment-list li:last-child {
  border-bottom: none;
}

.assessment-note {
  background: #fffaf0;
  border-left: 3px solid #ed8936;
  padding: 12px 15px;
  margin: 20px 0 0 0;
  font-size: 13px;
}

.assessment-note i {
  color: #ed8936;
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-body h2 {
    font-size: 24px;
  }
  
  .article-body h3 {
    font-size: 20px;
  }
  
  .comparison-grid,
  .market-facts,
  .mental-shift-steps {
    grid-template-columns: 1fr;
  }
  
  .core-principle {
    flex-direction: column;
    gap: 15px;
  }
  
  .fact-item,
  .step {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .article-intro,
  .key-insight,
  .core-principle,
  .exercise-box {
    padding: 15px;
  }
  
  .comparison-card {
    padding: 15px;
  }
}
/* === SIDEBAR STYLES === */

.sidebar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    color: var(--primary);
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Summary List */
.summary-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.summary-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list a {
    color: var(--accent);
    text-decoration: none;
}

.summary-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Next Topic */
.next-topic {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.next-topic:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.next-topic-icon {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.next-topic-info h4 {
    margin: 0 0 4px 0;
    color: var(--primary);
    font-size: 16px;
}

.next-topic-info p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    opacity: 0.8;
}

.next-topic .fa-chevron-right {
    margin-left: auto;
    color: var(--text);
    opacity: 0.6;
}

/* === KEY TAKEAWAYS FIX === */
.key-takeaways {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.key-takeaways h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 22px;
}

.key-takeaways ul {
    padding-left: 20px;
    margin: 0;
}

.key-takeaways li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text);
}

.key-takeaways li strong {
    color: var(--primary);
}

/* === SELF-ASSESSMENT FIX === */
.assessment-box {
    padding: 20px 0 0 0;
}

.assessment-box p strong {
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.assessment-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.assessment-list li {
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    position: relative;
}

.assessment-list li:before {
    content: "•";
    color: var(--accent);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 10px;
}

.assessment-list li:last-child {
    border-bottom: none;
}

.assessment-note {
    background: rgba(66, 153, 225, 0.1);
    border-left: 3px solid var(--accent);
    padding: 12px 15px;
    margin: 20px 0 0 0;
    font-size: 13px;
    border-radius: 0 4px 4px 0;
}

.assessment-note i {
    color: var(--accent);
    margin-right: 8px;
}

/* === ARTICLE GRID LAYOUT === */
.article-content {
    padding: 40px 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
}

/* === FONT AWESOME ICON SPACING === */
.fas, .fab, .far {
    font-family: "Font Awesome 6 Free" !important;
}

:root {
  --primary: #1a365d; /* Dark blue */
  --secondary: #2d3748; /* Dark gray */
  --accent: #4299e1; /* Light blue */
  --accent-light: #ebf8ff;
  --light: #f7fafc;
  --border: #e2e8f0;
  --text: #2d3748;
  --success: #38a169;
  --warning: #ed8936;
  --danger: #c53030;
  --success-bg: #f0fff4;
  --warning-bg: #fffaf0;
  --danger-bg: #fed7d7;
}

/* ========== ARTICLE BODY BASE STYLES ========== */
.article-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.article-body h2 {
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

.article-body h3 {
  color: var(--secondary);
  margin-top: 36px;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
}

.article-body h4 {
  color: var(--secondary);
  margin: 24px 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 20px;
}

/* ========== INTRODUCTION ========== */
.article-intro {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.6;
  border-radius: 0 6px 6px 0;
}

.article-intro strong {
  color: var(--primary);
  font-weight: 600;
}

/* ========== KEY INSIGHT ========== */
.key-insight {
  background: var(--success-bg);
  border: 1px solid #c6f6d5;
  border-radius: 6px;
  padding: 24px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.key-insight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--success);
}

.key-insight h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--success);
  font-size: 20px;
}

.key-insight h3 i {
  font-size: 24px;
}

/* ========== COMPARISON SECTION ========== */
.comparison-section {
  margin: 36px 0;
}

.comparison-section h3 {
  color: var(--primary);
  font-size: 24px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.comparison-header h4 {
  margin: 0;
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

.comparison-tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-tag.negative {
  background: var(--danger-bg);
  color: var(--danger);
}

.comparison-tag.positive {
  background: var(--success-bg);
  color: var(--success);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
  line-height: 1.5;
}

.comparison-list li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.comparison-list i {
  color: var(--accent);
  width: 20px;
  text-align: center;
  margin-top: 3px;
  font-size: 14px;
}

/* ========== CORE PRINCIPLE ========== */
.core-principle {
  display: flex;
  gap: 24px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  margin: 36px 0;
  align-items: flex-start;
}

.principle-icon {
  font-size: 36px;
  color: var(--accent);
  flex-shrink: 0;
  background: white;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.15);
}

.principle-content h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 22px;
}

.principle-content p {
  margin-bottom: 0;
  font-size: 16px;
}

/* ========== MARKET FACTS ========== */
.market-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.fact-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
  transition: transform 0.2s ease;
}

.fact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fact-icon {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  background: var(--accent-light);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-content h4 {
  margin: 0 0 12px 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.fact-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* ========== MENTAL SHIFT STEPS ========== */
.mental-shift-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 36px 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 12px 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* ========== KEY TAKEAWAYS ========== */
.key-takeaways {
  background: var(--accent-light);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 32px;
  margin: 48px 0;
  position: relative;
}

.key-takeaways::before {
  content: '💡';
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 32px;
  opacity: 0.2;
}

.key-takeaways h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 22px;
}

.key-takeaways ul {
  padding-left: 20px;
  margin: 0;
}

.key-takeaways li {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text);
  font-size: 16px;
}

.key-takeaways li strong {
  color: var(--primary);
  font-weight: 600;
}

/* ========== PRACTICAL APPLICATION ========== */
.practical-application {
  margin: 36px 0;
}

.practical-application h3 {
  color: var(--primary);
  font-size: 24px;
}

.exercise-box {
  background: var(--success-bg);
  border: 1px solid #c6f6d5;
  border-radius: 6px;
  padding: 32px;
  margin-top: 20px;
}

.exercise-box h4 {
  color: var(--success);
  margin-top: 0;
}

.exercise-box ol {
  padding-left: 24px;
  margin: 20px 0;
}

.exercise-box li {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 16px;
}

.exercise-note {
  background: #e6fffa;
  border-left: 3px solid #38b2ac;
  padding: 16px 20px;
  margin: 24px 0 0 0;
  font-size: 15px;
  border-radius: 0 6px 6px 0;
}

.exercise-note i {
  color: #38b2ac;
  margin-right: 10px;
  font-size: 18px;
}

/* ========== SIDEBAR STYLES ========== */
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-card h3 {
  color: var(--primary);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-card h3 i {
  color: var(--accent);
  font-size: 20px;
}

/* Summary List */
.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.summary-list li:last-child {
  border-bottom: none;
}

.summary-list a {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  font-size: 15px;
}

.summary-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.summary-list a i {
  color: var(--accent);
  font-size: 14px;
  width: 16px;
}

/* Self-Assessment */
.assessment-box {
  padding: 0;
}

.assessment-box p strong {
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
}

.assessment-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.assessment-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  position: relative;
  font-size: 15px;
}

.assessment-list li:before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 12px;
  background: var(--success-bg);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.assessment-list li:last-child {
  border-bottom: none;
}

.assessment-note {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 16px;
  margin: 20px 0 0 0;
  font-size: 14px;
  border-radius: 0 6px 6px 0;
}

.assessment-note i {
  color: var(--accent);
  margin-right: 10px;
}

/* Next Topic */
.next-topic {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.next-topic:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.next-topic-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.next-topic-info h4 {
  margin: 0 0 6px 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}

.next-topic-info p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

.next-topic .fa-chevron-right {
  margin-left: auto;
  color: var(--accent);
  opacity: 1;
  font-size: 18px;
}

/* ========== ARTICLE GRID LAYOUT ========== */
.article-content {
  padding: 48px 0;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1200px) {
  .article-grid {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
}

@media (max-width: 992px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sidebar-card {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .article-body h2 {
    font-size: 24px;
    margin-top: 36px;
  }
  
  .article-body h3 {
    font-size: 20px;
    margin-top: 28px;
  }
  
  .article-intro,
  .key-insight,
  .core-principle,
  .exercise-box,
  .key-takeaways {
    padding: 20px;
  }
  
  .comparison-grid,
  .market-facts,
  .mental-shift-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .core-principle {
    flex-direction: column;
    gap: 20px;
  }
  
  .fact-item,
  .step {
    flex-direction: column;
    gap: 16px;
  }
  
  .fact-icon,
  .step-number {
    width: 48px;
    height: 48px;
  }
  
  .article-content {
    padding: 32px 0;
  }
}

@media (max-width: 480px) {
  .article-body {
    font-size: 15px;
  }
  
  .article-intro {
    font-size: 16px;
  }
  
  .comparison-card,
  .sidebar-card {
    padding: 20px;
  }
  
  .next-topic {
    padding: 16px;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }

.bg-primary-light { background: var(--accent-light); }
.bg-success-light { background: var(--success-bg); }
.bg-warning-light { background: var(--warning-bg); }
.bg-danger-light { background: var(--danger-bg); }

/* ========== FONT AWESOME COMPATIBILITY ========== */
.fas, .fab, .far, .fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
  font-weight: 900;
}

/* ====== COMPARISON SECTION STYLES ====== */
.comparison-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.comparison-section h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.comparison-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.comparison-header h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.comparison-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-tag.negative {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.comparison-tag.positive {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.95rem;
}

.comparison-list li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.comparison-list i {
    color: #d4af37; /* Golden color */
    width: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparison-tag {
        align-self: flex-start;
    }
}
/* ====== GOLD ICON ONLY (on white background) ====== */
.market-facts .fact-icon i {
    color: #d4af37; /* Pure gold color */
}

/* ====== WHITE ICON ON GOLD BACKGROUND (Circular badge) ====== */
.market-facts .fact-icon {
    background: #d4af37; /* Gold background */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.market-facts .fact-icon i {
    color: white; /* White icon */
    font-size: 1.2rem;
}

/* ====== WHITE ICON ON GOLD BACKGROUND (Square badge) ====== */
.market-facts.square-icons .fact-icon {
    background: linear-gradient(135deg, #d4af37, #b8860b); /* Gold gradient */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.2);
}

/* ====== GOLD BORDER CIRCLE WITH GOLD ICON ====== */
.market-facts.bordered-icons .fact-icon {
    border: 2px solid #d4af37;
    background: white;
}

.market-facts.bordered-icons .fact-icon i {
    color: #d4af37;
}
.key-takeaways h3 {
    color: #1a365d; /* Primary dark blue */
}
/* ====== PAGE-SPECIFIC COMPARISON SECTION ====== */
.comparison-section-pg14 {
    margin: 3rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.comparison-section-pg14 h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-grid-pg14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 1.5rem;
}

.comparison-card-pg14 {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-card-pg14:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.comparison-header-pg14 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.comparison-header-pg14 h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.comparison-tag-pg14 {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-tag-pg14.negative-pg14 {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.comparison-tag-pg14.positive-pg14 {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.comparison-list-pg14 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list-pg14 li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.95rem;
}

.comparison-list-pg14 li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.comparison-list-pg14 i {
    color: #d4af37; /* Golden color */
    width: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .comparison-grid-pg14 {
        grid-template-columns: 1fr;
    }
}
/* ====== COMPACT HORIZONTAL MARKET FACTS ====== */
.market-facts-pg14 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.fact-item-pg14 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.fact-item-pg14:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fact-icon-pg14 {
    width: 48px;
    height: 48px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.fact-icon-pg14 i {
    color: white;
    font-size: 1.2rem;
}

.fact-content-pg14 h4 {
    color: #1a365d;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.fact-content-pg14 p {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* ====== ALTERNATIVE: EVEN MORE COMPACT INLINE LAYOUT ====== */
.market-facts-compact-pg14 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.fact-item-compact-pg14 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.fact-icon-compact-pg14 {
    flex-shrink: 0;
}

.fact-icon-compact-pg14 i {
    color: #d4af37;
    font-size: 1.1rem;
}

.fact-content-compact-pg14 h4 {
    color: #1a365d;
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.fact-content-compact-pg14 p {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .market-facts-pg14 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .market-facts-compact-pg14 {
        flex-direction: column;
    }
}
/* ====== COLORFUL MENTAL SHIFT STEPS ====== */
.mental-shift-steps-pg14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-pg14 {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid;
    transition: transform 0.2s ease;
}

.step-pg14:hover {
    transform: translateY(-3px);
}

.step-number-pg14 {
    width: 42px;
    height: 42px;
    background: white;
    color: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid;
}

.step-content-pg14 h4 {
    margin: 0 0 0.5rem 0;
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content-pg14 p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Individual step colors */
.step-color-1-pg14 {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1), rgba(66, 153, 225, 0.05));
    border-left-color: #4299e1;
}
.step-color-1-pg14 .step-number-pg14 {
    border-color: #4299e1;
}

.step-color-2-pg14 {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(72, 187, 120, 0.05));
    border-left-color: #48bb78;
}
.step-color-2-pg14 .step-number-pg14 {
    border-color: #48bb78;
}

.step-color-3-pg14 {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.1), rgba(237, 137, 54, 0.05));
    border-left-color: #ed8936;
}
.step-color-3-pg14 .step-number-pg14 {
    border-color: #ed8936;
}

.step-color-4-pg14 {
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.1), rgba(159, 122, 234, 0.05));
    border-left-color: #9f7aea;
}
.step-color-4-pg14 .step-number-pg14 {
    border-color: #9f7aea;
}

/* Alternative: Gold-themed steps */
.step-color-gold-1-pg14 {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-left-color: #d4af37;
}
.step-color-gold-2-pg14 {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.05));
    border-left-color: #b8860b;
}
.step-color-gold-3-pg14 {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border-left-color: #fbbf24;
}
.step-color-gold-4-pg14 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-left-color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mental-shift-steps-pg14 {
        grid-template-columns: 1fr;
    }
}

/* ====== PRACTICAL APPLICATION EXERCISE ====== */
.practical-application-pg14 {
    margin: 2.5rem 0;
}

.practical-application-pg14 h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.practical-application-pg14 h3 i {
    color: #d4af37; /* Gold icon */
}

.exercise-box-pg14 {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border: 2px solid #38b2ac;
    border-radius: 10px;
    padding: 2rem;
}

.exercise-box-pg14 p strong {
    color: #1a365d;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.exercise-steps-pg14 {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.exercise-steps-pg14 li {
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    position: relative;
    padding-left: 0.5rem;
}

.exercise-steps-pg14 li::marker {
    color: #d4af37; /* Gold numbers */
    font-weight: 600;
}

.exercise-steps-pg14 li em {
    color: #2b6cb0;
    font-style: italic;
}

.exercise-note-pg14 {
    background: linear-gradient(135deg, #ebf8ff, #e6fffa);
    border-left: 4px solid #d4af37; /* Gold accent */
    padding: 1.25rem;
    margin: 1.5rem 0 0 0;
    border-radius: 0 6px 6px 0;
    color: #2d3748;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.exercise-note-pg14 i {
    color: #d4af37; /* Gold icon */
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Alternative: Gold-themed version */
.exercise-box-gold-pg14 {
    background: linear-gradient(135deg, #fff9e6, #fff0c2);
    border: 2px solid #d4af37;
}

.exercise-steps-gold-pg14 li::marker {
    color: #b8860b; /* Darker gold */
}

.exercise-note-gold-pg14 {
    background: linear-gradient(135deg, #fff9e6, #ffe999);
    border-left: 4px solid #b8860b;
}

.exercise-note-gold-pg14 i {
    color: #b8860b;
}

/* Alternative: Blue-themed version */
.exercise-box-blue-pg14 {
    background: linear-gradient(135deg, #ebf8ff, #e6fffa);
    border: 2px solid #4299e1;
}

.exercise-steps-blue-pg14 li::marker {
    color: #4299e1; /* Blue numbers */
}

.exercise-note-blue-pg14 {
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    border-left: 4px solid #4299e1;
}

.exercise-note-blue-pg14 i {
    color: #4299e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .exercise-box-pg14 {
        padding: 1.5rem;
    }
    
    .exercise-note-pg14 {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ====== SIDEBAR SELF-ASSESSMENT ====== */
.sidebar-card-pg14 {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card-pg14 h3 {
    color: #1a365d;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-card-pg14 h3 i {
    color: #d4af37; /* Gold icon */
}

.assessment-box-pg14 {
    padding: 0;
}

.assessment-box-pg14 p strong {
    color: #1a365d;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.assessment-list-pg14 {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.assessment-list-pg14 li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
}

.assessment-list-pg14 li:before {
    content: "•";
    color: #d4af37; /* Gold bullet */
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: bold;
}

.assessment-list-pg14 li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.assessment-note-pg14 {
    background: #ebf8ff; /* Light blue background */
    border-left: 3px solid #4299e1; /* Blue accent */
    padding: 1rem;
    margin: 1rem 0 0 0;
    font-size: 0.85rem;
    color: #2d3748; /* DARK TEXT - This was missing! */
    line-height: 1.4;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.assessment-note-pg14 i {
    color: #4299e1; /* Blue icon */
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Alternative: Gold-themed note */
.assessment-note-gold-pg14 {
    background: #fff9e6; /* Light gold background */
    border-left: 3px solid #d4af37; /* Gold accent */
    color: #5f370e; /* Dark brown text for gold background */
}

.assessment-note-gold-pg14 i {
    color: #d4af37; /* Gold icon */
}

/* Alternative: Green-themed note */
.assessment-note-green-pg14 {
    background: #f0fff4; /* Light green background */
    border-left: 3px solid #38a169; /* Green accent */
    color: #22543d; /* Dark green text */
}

.assessment-note-green-pg14 i {
    color: #38a169; /* Green icon */
}