/*=============================================================================
 * TABLE OF CONTENTS
 *
 * 1. NAVIGATION & SIDEBAR
 * 2. CONTENT EDITOR & ADMIN
 * 3. BHV chapters:
 *    - 3.1  Uitgangspunt voor de bhv
 *    - 3.2  Bhv-inzet en bhv-taken
 *    - 3.3  Inzet mogelijkheden bhv bij brand en ontruiming
 *    - 3.4  Brand en brandoorzaken
 *    - 3.5  De taak van de bhv-er bij een brand
 *    - 3.6  Voorbereiding op een ontruiming
 *    - 3.7  De bhv-taak bij een ontruiming
 *    - 3.8  Uitgangspunten bij het verlenen van eerste hulp
 *    - 3.9  Wonden
 *    - 3.10 Oogletsels
 *    - 3.11 Kneuzingen en verstuikingen
 *    - 3.12 Botbreuken, ontwrichtingen en wervelletsels
 *    - 3.13 Verbrandingen
 *    - 3.14 Reanimeren
 *    - 3.15 Overige spoedeisende eerste hulp
 * 4. PLOEGLEIDER BHV chapters:
 *    - 4.
 *============================================================================*/

/*=============================================================================
 * 1. NAVIGATION & SIDEBAR
 *============================================================================*/

/* Sidebar navigation buttons */
.sidebar-move-up,
.sidebar-move-down {
  flex: 0 0 auto;
  margin-left: 6px;
  background: #e3eafc;
  border: 1px solid #3a7bfd;
  color: #07376b;
  border-radius: 4px;
  font-size: 1rem;
  padding: 2px 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sidebar-move-up[disabled],
.sidebar-move-down[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.sidebar-move-up:hover:not([disabled]),
.sidebar-move-down:hover:not([disabled]) {
  background: #3a7bfd;
  color: #fff;
}

/* Chapter structure styles */
.sidebar-chapter {
  margin-bottom: 10px;
  list-style-type: none;
}

.chapter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  margin-top: 5px;
  background: #f0f4ff;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #d7e3fc;
  transition: background-color 0.2s;
}

.chapter-header:hover {
  background: #e3eafc;
}

.sidebar-chapter.completed .chapter-header {
  background: #e8f5e9;
  border-color: #c8e6c9;
}

.chapter-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #07376b;
  flex: 1;
}

.chapter-toggle {
  background: none;
  border: none;
  color: #3a7bfd;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s;
  padding: 5px;
}

.chapter-toggle.expanded {
  transform: rotate(0deg);
}

/* Page navigation */
.chapter-pages {
  margin: 0;
  padding: 0 0 0 20px;
  list-style-type: none;
}

.sidebar-page {
  padding: 8px 10px;
  margin: 5px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-left: 3px solid transparent;
}

.sidebar-page:hover {
  background: #f5f7fa;
  border-left-color: #d7e3fc;
}

.sidebar-page.active {
  background: #e3eafc;
  border-left-color: #3a7bfd;
}

.page-title {
  font-size: 0.9rem;
  color: #333;
}

/* Page counter */
.footer-page-counter {
  font-size: 0.9rem;
  color: #666;
  padding: 5px 10px;
  background: #f5f7fa;
  border-radius: 4px;
  margin: 0 auto ;
}

/*=============================================================================
 * 2. CONTENT EDITOR & ADMIN
 *============================================================================*/

/* Editor toolbar */
.editor-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-toolbar select,
.editor-toolbar input[type="number"],
.editor-toolbar input[type="color"],
.editor-toolbar button {
  background: #f5f5f5;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  margin-right: 4px;
  font-size: 1rem;
  padding: 6px 10px;
  transition: background 0.2s, border 0.2s;
}

.editor-toolbar button:hover,
.editor-toolbar select:focus,
.editor-toolbar input[type="number"]:focus {
  background: #e3eafc;
  border: 1px solid #3a7bfd;
}

.editor-toolbar input[type="color"] {
  padding: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
}

/* Editor area */
.editor-area {
  min-height: 240px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  font-size: 1rem;
  outline: none;
  margin-bottom: 16px;
  resize: vertical;
  overflow: auto;
}

/* Admin metadata */
.admin-metadata {
  margin: 15px 0;
  padding: 15px;
  background: #f5f7fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.admin-metadata .form-group {
  margin-bottom: 10px;
}

.admin-metadata label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #07376b;
}

.admin-metadata input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  font-size: 1rem;
}

/* Editor action buttons */
.editor-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.editor-cancel-btn,
.editor-save-btn {
  padding: 8px 20px;
  border-radius: 4px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

.editor-cancel-btn {
  background: #eee;
  color: #333;
}

.editor-save-btn {
  background: #3a7bfd;
  color: #fff;
}

.editor-toolbar button.active {
  background-color: #007cba;
  color: white;
  border-color: #005a87;
}

.editor-toolbar button:hover {
  background-color: #f0f0f0;
}

.editor-toolbar button.active:hover {
  background-color: #005a87;
}

/*=============================================================================
 * 3. BHV chapters
 *============================================================================*/

/* Content section styling */
.content-section {
  margin-bottom: 30px;
}

.content-heading {
  color: #07376b;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3a7bfd;
}

/* Introduction banner */
.intro-banner {
  display: flex;
  align-items: center;
  background-color: #e3eafc;
  border-left: 5px solid #3a7bfd;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.banner-icon {
  margin-right: 15px;
  color: #3a7bfd;
}

.banner-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #07376b;
}

.icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-svg.icon-xl {
  width: 36px;
  height: 36px;
}

.icon-svg.icon-large {
  width: 30px;
  height: 30px;
}

.icon-svg.icon-primary {
  color: #3a7bfd;
}

.icon-svg.icon-warning {
  color: #f44336;
}

/* Info card styles */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.info-card {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #3a7bfd;
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e3eafc;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #07376b;
  margin: 0;
}

.info-list {
  list-style: none;
  padding-left: 5px;
  margin: 15px 0 0 0;
}

.info-list.checkmarks li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.info-list.checkmarks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Alert box styling */
.alert-box {
  display: flex;
  background-color: #fff4e5;
  border-left: 5px solid #ff9800;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.alert-box.enhanced {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.alert-icon {
  margin-right: 15px;
  color: #ff9800;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #e65100;
}

/* Legislation box */
.legislation-box {
  background-color: #e8f5e9;
  border-left: 5px solid #4caf50;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.legislation-heading {
  color: #2e7d32;
  margin-top: 0;
}

.legislation-list {
  padding-left: 20px;
}

.legislation-list li {
  margin-bottom: 8px;
}

/* Tip box styling */
.tip-box {
  background-color: #e3f2fd;
  border-left: 5px solid #2196f3;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.tip-box.enhanced {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tip-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.tip-icon {
  margin-right: 10px;
  color: #2196f3;
}

.tip-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #0d47a1;
}

/* Fact callout */
.fact-callout {
  display: flex;
  background-color: #f3e5f5;
  border-left: 5px solid #9c27b0;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.fact-icon {
  margin-right: 15px;
  color: #9c27b0;
}

.fact-content {
  flex: 1;
}

.fact-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #7b1fa2;
}

/* Assessment points styling */
.risk-assessment {
  margin: 30px 0;
  padding: 20px;
  background-color: #f8faff;
  border-radius: 8px;
  border-left: 4px solid #3a7bfd;
}

.assessment-heading {
  font-size: 1.3rem;
  color: #07376b;
  margin-bottom: 15px;
}

.assessment-desc {
  margin-bottom: 20px;
}

.assessment-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.assessment-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.point-icon {
  color: #2e7d32;
  flex-shrink: 0;
}

.point-text {
  font-size: 0.95rem;
}

/* Importance items styling */
.importance-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.importance-item {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #3a7bfd;
}

.importance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.importance-icon {
  background: #e3eafc;
  color: #3a7bfd;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.importance-title {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #07376b;
}

.importance-desc {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Timeline styling */
.timeline-container {
  margin: 30px 0;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 8px;
}

.timeline-heading {
  text-align: center;
  margin-bottom: 20px;
  color: #07376b;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background: #d7e3fc;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 60px;
}

.timeline-item.critical .timeline-dot {
  background-color: #36f485;
  border-color: #2fd36b;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 30px;
  background: #3a7bfd;
  border: 4px solid #2351b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}

.timeline-content {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #3a7bfd;
}

.timeline-title {
  margin: 0 0 10px 0;
  color: #07376b;
}

/* Quote box styling */
.quote-box {
  margin: 30px 0;
  padding: 30px;
  background: #f5f7fa;
  border-radius: 8px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a7bfd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quote-text {
  margin: 0;
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

.quote-text cite {
  display: block;
  font-style: normal;
  font-weight: bold;
  margin-top: 15px;
  text-align: right;
  color: #07376b;
}

/* Role importance section */
.role-importance {
  margin: 30px 0;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 8px;
  border-top: 4px solid #3a7bfd;
}

.role-heading {
  color: #07376b;
  margin-top: 0;
}

.role-description {
  margin-bottom: 20px;
}

.role-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  color: #3a7bfd;
  flex-shrink: 0;
}

.benefit-text {
  font-weight: 500;
}

/*=============================================================================
 * Service Cards for Emergency Services
 *============================================================================*/

.service-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: white;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card.emergency .service-header {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.service-card.fire .service-header {
  background: linear-gradient(135deg, #ff5722, #b71c1c);
}

.service-card.police .service-header {
  background: linear-gradient(135deg, #3f51b5, #1a237e);
}

.service-header {
  padding: 25px 20px;
  text-align: center;
  color: white;
}

.service-header h3 {
  margin: 15px 0 0 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-icon {
  width: 60px;
  height: 60px;
  fill: white;
}

.service-content {
  padding: 20px;
}

.service-tasks, .bhv-cooperation {
  margin-bottom: 15px;
}

.service-tasks h4, .bhv-cooperation h4 {
  color: #07376b;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #e3eafc;
}

.service-content ul {
  margin: 0;
  padding-left: 20px;
}

.service-content li {
  margin-bottom: 8px;
}

/*=============================================================================
 * Protocol Steps Component
 *============================================================================*/

.protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}

.protocol-step {
  display: flex;
  align-items: flex-start;
  background-color: #f8faff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #3a7bfd;
  transition: transform 0.2s ease;
}

.protocol-step:hover {
  transform: translateX(8px);
}

.protocol-step.highlight {
  background-color: #e3eafc;
  border-left-color: #ff9800;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #3a7bfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.protocol-step.highlight .step-number {
  background: #ff9800;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  margin: 0 0 8px 0;
  color: #07376b;
  font-size: 1.1rem;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/*=============================================================================
 * SITRAP Information Model
 *============================================================================*/

.sitrap-model {
  margin: 30px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sitrap-header {
  background: #07376b;
  color: white;
  padding: 15px 20px;
  text-align: center;
}

.sitrap-header h4 {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
}

.main-content .sitrap-header p {
  color: white;
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.sitrap-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background-color: #eee;
}

.sitrap-element {
  display: flex;
  background: white;
  padding: 15px;
}

.sitrap-letter {
  width: 40px;
  height: 40px;
  background: #3a7bfd;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.sitrap-explanation {
  flex: 1;
}

.sitrap-explanation h5 {
  margin: 0 0 5px 0;
  color: #07376b;
}

.sitrap-explanation p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/*=============================================================================
 * Do's and Don'ts Table
 *============================================================================*/

.dos-donts-container {
  margin: 30px 0;
}

.dos-donts-table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
  display: flex;
}

.dos-header, .donts-header {
  flex: 1;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
}

.dos-header {
  background-color: #4caf50;
}

.donts-header {
  background-color: #f44336;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
  border-bottom: none;
}

.dos-cell, .donts-cell {
  flex: 1;
  padding: 15px;
  display: flex;
  align-items: center;
}

.dos-cell {
  background-color: #f1f8e9;
}

.donts-cell {
  background-color: #ffebee;
}

.icon-check {
  width: 24px;
  height: 24px;
  fill: #4caf50;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-cross {
  width: 24px;
  height: 24px;
  fill: #f44336;
  margin-right: 15px;
  flex-shrink: 0;
}

/*=============================================================================
 * Essential Information Box
 *============================================================================*/

.essential-info-box {
  margin: 30px 0;
  background: #f5f7fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.info-box-header {
  background: #3a7bfd;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.info-box-icon {
  width: 30px;
  height: 30px;
  fill: white;
  margin-right: 15px;
}

.info-box-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.info-box-content {
  padding: 20px;
}

.info-box-content p {
  margin-top: 0;
}

.info-checklist {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.info-checklist li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.info-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: #4caf50;
  border-radius: 50%;
}

.info-checklist li.checked::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: -1px;
  color: white;
  font-weight: bold;
}

/* Simplified organizational chart */
.simple-org-chart {
  margin: 30px auto;
  max-width: 1000px;
  text-align: center;
}

.org-box {
  background: white;
  border-radius: 10px;
  padding: 15px;
  margin: 0 auto 10px auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: transform 0.2s;
  border-top: 4px solid #3a7bfd;
}

.org-box:hover {
  transform: translateY(-5px);
}

.org-head {
  margin-bottom: 0;
}

.org-mid {
  margin-bottom: 20px;
}

.org-child {
  margin: 10px;
  display: inline-block;
  width: 220px;
  vertical-align: top;
}

.org-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}

.org-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.blue-icon {
  background: #3a7bfd;
}

.medical-icon {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.fire-icon {
  background: linear-gradient(135deg, #ff5722, #b71c1c);
}

.evacuation-icon {
  background: linear-gradient(135deg, #4caf50, #1b5e20);
}

.org-connector {
  height: 30px;
  width: 2px;
  background: #c8d4e8;
  margin: 0 auto;
}

.org-connector-horizontal {
  height: 2px;
  width: 80%;
  background: #c8d4e8;
  margin: 0 auto 30px auto;
}

.org-level-3 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

/* BHV materials */
.bhv-materials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.material-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 320px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.material-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.material-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.material-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.medical-bg {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.fire-bg {
  background: linear-gradient(135deg, #ff5722, #b71c1c);
}

.evacuation-bg {
  background: linear-gradient(135deg, #4caf50, #1b5e20);
}

.communication-bg {
  background: linear-gradient(135deg, #9c27b0, #4a148c);
}

.visibility-bg {
  background: linear-gradient(135deg, #ff9800, #e65100);
}

.documents-bg {
  background: linear-gradient(135deg, #607d8b, #263238);
}

/* BHV cycle - FIXED positioning */
.bhv-cycle-simple {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 620px; /* Fixed height for proper positioning */
  margin: 60px auto;
  padding: 20px;
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #3a7bfd;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cycle-items {
  position: relative;
  width: 100%;
  height: 100%;
}

.cycle-item {
  position: absolute;
  width: 160px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Position each cycle item around the center */
.cycle-item:nth-child(1) { /* Plan */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-item:nth-child(2) { /* Do */
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cycle-item:nth-child(3) { /* Check */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-item:nth-child(4) { /* Act */
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cycle-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

/* Adjust hover transforms to maintain positioning */
.cycle-item:nth-child(1):hover {
  transform: translateX(-50%) scale(1.05);
}

.cycle-item:nth-child(2):hover {
  transform: translateY(-50%) scale(1.05);
}

.cycle-item:nth-child(3):hover {
  transform: translateX(-50%) scale(1.05);
}

.cycle-item:nth-child(4):hover {
  transform: translateY(-50%) scale(1.05);
}

.cycle-icon {
  width: 40px;
  height: 40px;
  background: #3a7bfd;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cycle-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.cycle-item h4 {
  margin: 0 0 5px 0;
  color: #07376b;
}

.cycle-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

/* Legislation Alert */
.legislation-alert {
  display: flex;
  align-items: flex-start;
  background-color: #e3eafc;
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #3a7bfd;
}

.legislation-icon {
  background-color: #3a7bfd;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.legislation-icon .icon-svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.legislation-content h4 {
  margin: 0 0 10px 0;
  color: #07376b;
  font-size: 1.2rem;
}

.legislation-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Task Distribution */
.task-distribution {
  margin: 40px 0;
}

.task-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.task-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.task-card:hover {
  transform: translateY(-5px);
}

.task-header {
  background: #3a7bfd;
  color: white;
  padding: 15px 20px;
  text-align: center;
}

.task-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.task-content {
  padding: 15px 20px;
}

.task-list {
  margin: 0;
  padding-left: 20px;
}

.task-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}

/* BHV Plan Checklist */
.checklist-container {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.checklist-header {
  background: #3a7bfd;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.checklist-header-icon {
  width: 24px;
  height: 24px;
  fill: white;
  margin-right: 15px;
}

.checklist-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.checklist-items {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  background: #f8faff;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checklist-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.checkbox {
  width: 28px;
  height: 28px;
  background: #4caf50;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.checkbox-icon {
  width: 18px;
  height: 18px;
  fill: white;
}

.checklist-text {
  flex: 1;
}

.checklist-text h5 {
  margin: 0 0 5px 0;
  color: #07376b;
  font-size: 1rem;
}

.checklist-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Safety Pyramid */
.safety-pyramid {
  margin: 40px 0;
}

.pyramid-container {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

.pyramid-level {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 2px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.pyramid-level:hover {
  transform: translateX(10px);
}

.pyramid-level.fatal {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: white;
  width: 20%;
  margin-left: 40%;
}

.pyramid-level.serious {
  background: linear-gradient(135deg, #f57c00, #e65100);
  color: white;
  width: 40%;
  margin-left: 30%;
}

.pyramid-level.minor {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  color: white;
  width: 60%;
  margin-left: 20%;
}

.pyramid-level.incidents {
  background: linear-gradient(135deg, #388e3c, #2e7d32);
  color: white;
  width: 80%;
  margin-left: 10%;
}

.pyramid-level.unsafe {
  background: linear-gradient(135deg, #1976d2, #0d47a1);
  color: white;
  width: 100%;
}

.pyramid-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.pyramid-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pyramid-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.pyramid-content p {
  margin: 0;
  font-size: 0.7rem;
  opacity: 0.9;
}

/* Safety Principles */
.safety-principles {
  margin: 40px 0;
}

.principle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.principle-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-8px);
}

.principle-card.awareness .card-header {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.principle-card.communication .card-header {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.principle-card.prevention .card-header {
  background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.card-header {
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
}

.principle-number {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
}

.card-header h4 {
  margin: 0;
  font-size: 1.3rem;
}

.card-content {
  padding: 20px;
}

.card-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.principle-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tip-tag {
  background: #e3eafc;
  color: #1565c0;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Risk Matrix */
.risk-matrix {
  margin: 40px 0;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
}

.matrix-intro {
  text-align: center;
  margin-bottom: 25px;
}

.matrix-container {
  max-width: 500px;
  margin: 0 auto;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 80px repeat(3, 1fr);
  grid-template-rows: 40px repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}

.matrix-header,
.matrix-side-header {
  background: #07376b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.matrix-side-header {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.risk-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.risk-cell.minimal {
  background: #4caf50;
}

.risk-cell.low {
  background: #8bc34a;
}

.risk-cell.medium {
  background: #ff9800;
}

.risk-cell.high {
  background: #f44336;
}

.risk-cell.critical {
  background: #b71c1c;
}

.matrix-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color.critical {
  background: #b71c1c;
}

.legend-color.high {
  background: #f44336;
}

.legend-color.medium {
  background: #ff9800;
}

.legend-color.low {
  background: #8bc34a;
}

/* Safety Behaviors */
.safety-behaviors {
  margin: 40px 0;
}

.behavior-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

.behavior-column {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.behavior-column.safe .column-header {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.behavior-column.unsafe .column-header {
  background: linear-gradient(135deg, #f44336, #c62828);
}

.column-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
}

.header-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  margin-right: 12px;
}

.column-header h4 {
  margin: 0;
  font-size: 1.3rem;
}

.behavior-items {
  background: white;
  padding: 20px;
}

.behavior-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.behavior-item:hover {
  background: #f5f7fa;
}

.item-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.safe-icon {
  background: #e8f5e9;
  color: #2e7d32;
}

.unsafe-icon {
  background: #ffebee;
  color: #c62828;
}

.item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.behavior-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Workplace Hazards */
.workplace-hazards {
  margin: 40px 0;
}

.hazard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.hazard-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ff9800;
  transition: transform 0.2s ease;
}

.hazard-card:hover {
  transform: translateY(-5px);
}

.hazard-icon {
  width: 50px;
  height: 50px;
  background: #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
}

.hazard-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.hazard-card h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.1rem;
}

.hazard-card ul {
  margin: 0;
  padding-left: 20px;
}

.hazard-card li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* Modern Safety Checklist */
.safety-checklist-modern {
  margin: 40px 0;
}

.checklist-intro {
  text-align: center;
  margin-bottom: 25px;
  color: #666;
}

.modern-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.checklist-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
  display: flex;
  align-items: center;
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.1rem;
}

.section-icon {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
}

.section-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor; /* Inherits color from parent */
  vertical-align: middle;
}

.check-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.safety-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.check-item:hover .checkmark {
  background-color: #ccc;
}

.safety-checkbox:checked ~ .checkmark {
  background-color: #4caf50;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.safety-checkbox:checked ~ .checkmark:after {
  display: block;
}

.check-item .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Responsibility Layers */
.responsibility-layers {
  margin: 40px 0;
}

.responsibility-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.layers-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.responsibility-layer {
  display: flex;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 6px solid #3a7bfd;
}

.responsibility-layer:hover {
  transform: translateX(10px);
}

.responsibility-layer.personal {
  border-left-color: #34ebe8;
}

.responsibility-layer.social {
  border-left-color: #00aaff;
}

.responsibility-layer.professional {
  border-left-color: #0245ff;
}

.layer-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3a7bfd;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
}

.responsibility-layer.personal .layer-number {
  background: #34ebe8;
}

.responsibility-layer.social .layer-number {
  background: #00aaff;
}

.responsibility-layer.professional .layer-number {
  background: #0245ff;
}

.layer-content {
  flex: 1;
}

.layer-content h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.3rem;
}

.layer-description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.layer-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.example-item {
  display: flex;
  align-items: center;
  background: #f8faff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #e3eafc;
}

.example-icon {
  width: 16px;
  height: 16px;
  fill: #3a7bfd;
  margin-right: 8px;
  flex-shrink: 0;
}

.example-tag {
  background-color: #edeff2;
  border-radius: 15px;
  padding: 4px 8px;
  margin-top: 5px;
  display: inline-block;
}

.methane-examples {
  width: 100%;
  height: 100%;
  text-align: left;
}

/* Mindset Section */
.mindset-section {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8faff, #e3eafc);
  border-radius: 15px;
}

.mindset-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #07376b;
  font-size: 1.1rem;
}

.mindset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.mindset-trait {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mindset-trait:hover {
  transform: translateY(-8px);
}

.trait-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.trait-icon {
  width: 50px;
  height: 50px;
  background: #3a7bfd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.trait-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.trait-header h4 {
  margin: 0;
  color: #07376b;
  font-size: 1.2rem;
}

.mindset-trait p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

/* Decision Framework */
.decision-framework {
  margin: 50px 0;
}

.framework-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.decision-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.decision-step {
  display: flex;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3a7bfd;
  position: relative;
}

.decision-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 35px;
  width: 2px;
  height: 20px;
  background: #d7e3fc;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: #3a7bfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Personal Development */
.personal-development {
  margin: 50px 0;
}

.development-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.development-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.development-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.development-card:hover {
  transform: translateY(-10px);
}

.development-card.knowledge {
  border-top: 5px solid #2196f3;
}

.development-card.skills {
  border-top: 5px solid #4caf50;
}

.development-card.leadership {
  border-top: 5px solid #ff9800;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: #3a7bfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.development-card.knowledge .card-icon {
  background: #2196f3;
}

.development-card.skills .card-icon {
  background: #4caf50;
}

.development-card.leadership .card-icon {
  background: #ff9800;
}

.card-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.development-card h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.3rem;
}

.card-description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.development-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* Fix action-tag conflicts */
.bhv-phases-detailed .action-tag,
.phase-content .action-tag {
  background: #e3eafc;
  color: #1565c0;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.action-tag svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsibility Reminders */
.responsibility-reminders {
  margin: 50px 0;
}

.reminders-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.reminder-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.reminder-column {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.before-work .column-header {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.during-work .column-header {
  background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.end-work .column-header {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.reminder-items {
  padding: 20px;
}

.reminder-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8faff;
  border-radius: 8px;
}

.reminder-bullet {
  color: #3a7bfd;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.2rem;
  line-height: 1;
}

.reminder-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Courage Section */
.courage-section {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 15px;
}

.courage-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #e65100;
  font-size: 1.1rem;
}

.courage-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.courage-scenario {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff9800;
}

.scenario-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.scenario-icon {
  width: 60px;
  height: 60px;
  background: #ff9800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.scenario-icon svg {
  width: 46px;
  height: 46px;
  fill: white;
}

.scenario-header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
}

.scenario-description {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.scenario-approach {
  padding: 12px;
  background: #f3e5f5;
  border-radius: 8px;
  border-left: 3px solid #9c27b0;
}

.approach-label {
  font-weight: bold;
  color: #7b1fa2;
  display: block;
  margin-bottom: 5px;
}

.approach-text {
  font-style: italic;
  color: #555;
}

/* Skill Decay Model */
.skill-decay-model {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  border-radius: 15px;
}

.decay-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #e65100;
  font-size: 1.1rem;
}

.decay-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.decay-phase {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.decay-phase:hover {
  transform: translateY(-8px);
}

.phase-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f5f5f5;
}

.phase-icon {
  width: 50px;
  height: 50px;
  background: #3a7bfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.phase-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.phase-header h4 {
  margin: 5px 0;
  color: #07376b;
  font-size: 1.1rem;
}

.retention-rate {
  background: #4caf50;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.9rem;
}

.retention-rate.medium {
  background: #ff9800;
}

.retention-rate.low {
  background: #f44336;
}

.retention-rate.critical {
  background: #b71c1c;
}

.decay-phase p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* Training Benefits */
.training-benefits {
  margin: 50px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-visual {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Progress Ring */
.progress-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

.progress-svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

/* speedometer */

.speedometer-svg {
  width: 35%;
}

.speed-label {
  text-align: center;
  margin-top: 5px;
  font-size: 0.9rem;
  color: #4caf50;
  font-weight: bold;
}

/* Target */
.target {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid;
}

.ring-1 {
  width: 80px;
  height: 80px;
  border-color: #f44336;
}

.ring-2 {
  width: 60px;
  height: 60px;
  border-color: #ff9800;
}

.ring-3 {
  width: 40px;
  height: 40px;
  border-color: #4caf50;
}

.target-center {
  width: 20px;
  height: 20px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.target-center svg {
  width: 12px;
  height: 12px;
  fill: white;
}

/* Stress Meter */
.stress-meter {
  width: 80px;
  height: 20px;
  position: relative;
  background: #e3eafc;
  border-radius: 10px;
  overflow: hidden;
}

.stress-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.stress-low {
  width: 30%;
  background: linear-gradient(90deg, #4caf50, #2e7d32);
}

.stress-indicator {
  position: absolute;
  top: -25px;
  left: 15%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stress-indicator svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.benefit-card h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.method-detail {
  margin-bottom: 25px;
  text-align: center;
}

.method-icon {
  width: 80px;
  height: 80px;
  background: #3a7bfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.method-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.method-header h4 {
  margin: 0;
  color: #07376b;
  font-size: 1.3rem;
}

.method-detail h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.3rem;
}

.method-detail p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.advantage-tag {
  background: #e3eafc;
  color: #1565c0;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Frequency Guide */
.frequency-guide {
  margin: 50px 0;
}

.frequency-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.frequency-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.frequency-item:hover {
  transform: translateY(-8px);
}

.frequency-item.daily .frequency-header {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.frequency-item.weekly .frequency-header {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.frequency-item.monthly .frequency-header {
  background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.frequency-item.yearly .frequency-header {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.frequency-header {
  padding: 20px;
  text-align: center;
  color: white;
}

.frequency-icon {
  width: 40px;
  height: 40px;
  fill: white;
  margin: 0 auto 10px;
}

.frequency-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.frequency-content {
  padding: 20px;
}

.frequency-content ul {
  margin: 0;
  padding-left: 20px;
}

.frequency-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Muscle Memory Section */
.muscle-memory-section {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border-radius: 15px;
}

.muscle-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #7b1fa2;
  font-size: 1.1rem;
}

.muscle-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.muscle-example {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.example-visual {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Hands Position (Reanimation) */
.hands-position {
  position: relative;
  width: 80px;
  height: 60px;
}

.hand {
  position: absolute;
  width: 35px;
  height: 20px;
  background: #ffd54f;
  border-radius: 10px;
  border: 2px solid #ff8f00;
}

.hand-1 {
  top: 10px;
  left: 15px;
  transform: rotate(-5deg);
}

.hand-2 {
  top: 25px;
  left: 25px;
  transform: rotate(5deg);
}

.compression-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 15px;
  background: #f44336;
  border-radius: 2px;
  animation: compress 1s infinite;
}

@keyframes compress {
  0%, 100% { height: 15px; }
  50% { height: 8px; }
}

/* Extinguisher Steps */
.extinguisher-steps {
  display: flex;
  gap: 8px;
}

.step {
  width: 30px;
  height: 30px;
  background: #ff5722;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.step-2 { background: #ff9800; }
.step-3 { background: #4caf50; }
.step-4 { background: #2196f3; }

/* Evacuation Path */
.evacuation-path {
  display: flex;
  align-items: center;
  gap: 5px;
}

.path-point {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.path-point.start {
  background: #f44336;
}

.path-point.middle {
  background: #ff9800;
}

.path-point.end {
  background: #4caf50;
}

.path-line {
  width: 15px;
  height: 3px;
  background: #3a7bfd;
  border-radius: 2px;
}

.muscle-example h4 {
  margin: 0 0 10px 0;
  color: #07376b;
  font-size: 1.1rem;
}

.muscle-example p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* Personal Training Plan */
.personal-training-plan {
  margin: 50px 0;
}

.plan-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.training-planner {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.planner-section {
  padding: 25px;
  border-bottom: 1px solid #e3eafc;
}

.planner-section:last-child {
  border-bottom: none;
}

.planner-section h4 {
  margin: 0 0 20px 0;
  color: #07376b;
  font-size: 1.2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #3a7bfd;
}

/* Goal Options */
.goal-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.goal-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px;
  background: #f8faff;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.goal-option:hover {
  background: #e3eafc;
}

.goal-checkbox {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #3a7bfd;
}

.goal-text {
  font-size: 0.95rem;
  color: #333;
}

/* Schedule Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.schedule-day {
  background: #f8faff;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  border: 2px solid #e3eafc;
}

.schedule-day.monthly {
  border-color: #ff9800;
  background: #fff3e0;
}

.schedule-day h5 {
  margin: 0 0 10px 0;
  color: #07376b;
  font-size: 1rem;
}

.schedule-day.monthly .activity-slot {
  background: #ff9800;
}

.activity-tag {
  background-color: #d7e3fc;
  padding: 4px 8px;
  border-radius: 15px;
}

/* Progress Tracker */
.progress-tracker {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.progress-week {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f8faff;
  border-radius: 8px;
}

.week-label {
  font-weight: 500;
  color: #07376b;
  min-width: 60px;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e3eafc;
}

.dot.completed {
  background: #4caf50;
}

.dot.pending {
  background: #e0e0e0;
}

.week-score {
  font-weight: bold;
  color: #3a7bfd;
  min-width: 30px;
  text-align: right;
}

/* Motivation Section */
.motivation-section {
  margin: 50px 0;
}

.motivation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.motivation-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.motivation-card:hover {
  transform: translateY(-10px);
}

.motivation-card.lives {
  border-top: 5px solid #f44336;
}

.motivation-card.confidence {
  border-top: 5px solid #4caf50;
}

.motivation-card.team {
  border-top: 5px solid #2196f3;
}

.lives-icon {
  background: linear-gradient(135deg, #f44336, #c62828);
}

.confidence-icon {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.team-icon {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.motivation-card h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.3rem;
}

.motivation-card p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}

/* Chapter Conclusion */
.chapter-conclusion {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 15px;
}

.conclusion-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.conclusion-text p {
  line-height: 1.7;
  color: #2e7d32;
  margin-bottom: 20px;
}

.key-message {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #4caf50;
}

.message-icon {
  width: 50px;
  height: 50px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.message-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.message-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2e7d32;
  margin: 0;
  line-height: 1.6;
}

.next-chapter-preview {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.next-chapter-preview h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.2rem;
  border-bottom: 2px solid #3a7bfd;
  padding-bottom: 8px;
}

.preview-list {
  margin: 0;
  padding-left: 20px;
}

.preview-list li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.5;
}

.practice-methods-static .method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.method-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.method-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.chapter-introduction {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8faff, #e3eafc);
  border-radius: 15px;
  border-left: 6px solid #3a7bfd;
}

.chapter-intro {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #07376b;
}

.chapter-overview {
  margin: 30px 0;
}

.chapter-overview h4 {
  color: #07376b;
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid #3a7bfd;
  padding-bottom: 8px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.overview-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #3a7bfd;
  transition: transform 0.3s ease;
}

.overview-item:hover {
  transform: translateY(-5px);
}

.overview-icon {
  width: 50px;
  height: 50px;
  background: #3a7bfd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.overview-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.overview-text h5 {
  margin: 0 0 8px 0;
  color: #07376b;
  font-size: 1.1rem;
}

.overview-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.learning-objectives {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
}

.learning-objectives h4 {
  color: #07376b;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.objectives-list {
  margin: 0;
  padding-left: 25px;
}

.objectives-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #333;
}

/*=============================================================================
 * Incident Scenarios Component
 *============================================================================*/

.incident-scenarios {
  margin: 40px 0;
}

.scenario-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.scenario-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.scenario-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-8px);
}

.scenario-card.medical .scenario-header {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.scenario-card.fire .scenario-header {
  background: linear-gradient(135deg, #ff5722, #b71c1c);
}

.scenario-card.accident .scenario-header {
  background: linear-gradient(135deg, #ff9800, #e65100);
}

.incident-scenarios .scenario-header {
  display: flex;
  align-items: center;
  padding: 20px;
}

.incident-scenarios .scenario-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.incident-scenarios .scenario-icon svg {
  width: 50px;
  height: 50px;
  fill: white;
}

.incident-scenarios .scenario-header h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
}

.scenario-content {
  padding: 20px;
}

.scenario-text {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.challenge-tag {
  background: #f44336;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/*=============================================================================
 * Chaos to Control Component
 *============================================================================*/

.inzet-philosophy {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 15px;
}

.philosophy-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #e65100;
  font-size: 1.1rem;
  line-height: 1.7;
}

.chaos-to-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.control-state {
  flex: 1;
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.control-state.chaos {
  border-top: 5px solid #f44336;
}

.control-state.control {
  border-top: 5px solid #4caf50;
}

.state-visual {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.chaos-elements {
  position: relative;
  width: 80px;
  height: 80px;
}

.chaos-element {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f44336;
  border-radius: 50%;
  animation: chaosMove 2s infinite ease-in-out;
}

.chaos-element.element-1 {
  top: 10px;
  left: 20px;
  animation-delay: 0s;
}

.chaos-element.element-2 {
  top: 30px;
  left: 50px;
  animation-delay: 0.2s;
}

.chaos-element.element-3 {
  top: 50px;
  left: 10px;
  animation-delay: 0.4s;
}

.chaos-element.element-4 {
  top: 20px;
  left: 60px;
  animation-delay: 0.6s;
}

.chaos-element.element-5 {
  top: 60px;
  left: 40px;
  animation-delay: 0.8s;
}

@keyframes chaosMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-10px, -10px) scale(1.2); }
  50% { transform: translate(10px, -5px) scale(0.8); }
  75% { transform: translate(-5px, 10px) scale(1.1); }
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  width: 80px;
  height: 80px;
}

.grid-cell {
  background: #e0e0e0;
  border-radius: 4px;
  transition: background 0.5s ease;
}

.grid-cell.active {
  background: #4caf50;
  animation: controlPulse 2s infinite ease-in-out;
}

@keyframes controlPulse {
  0%, 100% { background: #4caf50; transform: scale(1); }
  50% { background: #2e7d32; transform: scale(1.1); }
}

.control-state h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.3rem;
}

.control-state ul {
  text-align: left;
  margin: 0;
  padding-left: 20px;
}

.control-state li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.transformation-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.transformation-arrow svg {
  width: 40px;
  height: 40px;
  fill: #ff9800;
  margin-bottom: 8px;
}

.arrow-label {
  background: #ff9800;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/*=============================================================================
 * BHV Phases Detailed Component
 *============================================================================*/

.bhv-phases-detailed {
  margin: 50px 0;
}

.phases-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.phase-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.phase {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.phase:hover {
  transform: translateY(-5px);
}

.phase.alert .phase-header {
  background: linear-gradient(135deg, #f44336, #c62828);
}

.phase.assess .phase-header {
  background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.phase.action .phase-header {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.phase.handover .phase-header {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.phase.evaluation .phase-header {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.bhv-phases-detailed .phase-header {
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
}

.bhv-phases-detailed .phase-icon {
  width: 40px;
  height: 40px;
}

.bhv-phases-detailed .phase-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.bhv-phases-detailed .phase-header h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.phase-content {
  padding: 25px;
}

.phase-description {
  font-size: 1.1rem;
  color: #07376b;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.phase-details h5 {
  color: #07376b;
  margin: 20px 0 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #e3eafc;
  padding-bottom: 5px;
}

.phase-activities {
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.phase-activities li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.role-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.success-factors .action-tag {
  background: #e3eafc;
  color: #1565c0;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.methane-quick,
.sbar-method {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 15px 0;
}

.methane-item,
.sbar-item {
  background: #f8faff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  border-left: 3px solid #3a7bfd;
}

.parallel-tasks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

.task-item {
  display: flex;
  align-items: center;
  background: #f8faff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #07376b;
  border: 1px solid #e3eafc;
}

.task-item svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

.task-item.medical svg {
  fill: #2196f3;
}

.task-item.fire svg {
  fill: #ff5722;
}

.task-item.evacuation svg {
  fill: #4caf50;
}

.phase-timing {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 10px;
  background: #e3eafc;
  border-radius: 8px;
}

.timing-label {
  font-weight: 600;
  color: #07376b;
  margin-right: 10px;
}

.timing-value {
  background: #3a7bfd;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/*=============================================================================
 * Success Factors Component
 *============================================================================*/

.success-factors {
  margin: 50px 0;
}

.success-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.factor-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #4caf50;
  transition: transform 0.3s ease;
  text-align: center;
}

.factor-card:hover {
  transform: translateY(-8px);
}

.factor-card.leadership {
  border-top-color: #2196f3;
}

.factor-card.communication {
  border-top-color: #4caf50;
}

.factor-card.preparation {
  border-top-color: #ff9800;
}

.factor-card.safety {
  border-top-color: #f44336;
}

.factor-card.flexibility {
  border-top-color: #9c27b0;
}

.factor-card.teamwork {
  border-top-color: #607d8b;
}

.factor-icon {
  width: 60px;
  height: 60px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.factor-card.leadership .factor-icon {
  background: #2196f3;
}

.factor-card.communication .factor-icon {
  background: #4caf50;
}

.factor-card.preparation .factor-icon {
  background: #ff9800;
}

.factor-card.safety .factor-icon {
  background: #f44336;
}

.factor-card.flexibility .factor-icon {
  background: #9c27b0;
}

.factor-card.teamwork .factor-icon {
  background: #607d8b;
}

.factor-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.factor-card h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.2rem;
}

.factor-card p {
  margin: 0;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

/*=============================================================================
 * Common Mistakes Component
 *============================================================================*/

.common-mistakes {
  margin: 50px 0;
}

.mistakes-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.mistake-item {
  display: flex;
  align-items: flex-start;
  background: #ffebee;
  border-radius: 12px;
  padding: 20px;
  border-left: 5px solid #f44336;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.mistake-icon {
  width: 50px;
  height: 50px;
  background: #f44336;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.mistake-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.mistake-content h4 {
  margin: 0 0 10px 0;
  color: #c62828;
  font-size: 1.1rem;
}

.mistake-content p {
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.mistake-content p strong {
  color: #c62828;
}

/*=============================================================================
 * Decision Tree Component
 *============================================================================*/

.decision-tree {
  margin: 50px 0;
}

.tree-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.tree-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #f8faff;
  border-radius: 15px;
}

.tree-start,
.tree-safety,
.tree-life,
.tree-help,
.tree-end {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tree-node {
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 200px;
}

.tree-node.start {
  background: #e3eafc;
  border: 2px solid #3a7bfd;
}

.tree-node.safety {
  background: #fff3e0;
  border: 2px solid #ff9800;
}

.tree-node.life {
  background: #ffebee;
  border: 2px solid #f44336;
}

.tree-node.help {
  background: #e8f5e9;
  border: 2px solid #4caf50;
}

.tree-node.action {
  background: #f3e5f5;
  border: 2px solid #9c27b0;
}

.tree-node.critical {
  background: #ffcdd2;
  border: 2px solid #d32f2f;
}

.tree-node h4 {
  margin: 0 0 8px 0;
  color: #07376b;
  font-size: 1rem;
}

.tree-node p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

.tree-arrow {
  font-size: 1.5rem;
  color: #3a7bfd;
  margin: 10px 0;
  font-weight: bold;
}

.tree-branches {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
}

.branch-left,
.branch-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-label {
  background: #3a7bfd;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/*=============================================================================
 * Chapter Transition Component
 *============================================================================*/

 /* Fix any remaining conflicts with existing styles */
.content-section .role-actions .action-tag {
  background: #e3eafc;
  color: #1565c0;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}


.chapter-transition {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 15px;
}

.transition-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #2e7d32;
  font-size: 1.1rem;
}

.page-icon {
  width: 50px;
  height: 50px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.page-info h4 {
  margin: 0 0 8px 0;
  color: #07376b;
  font-size: 1rem;
}

.page-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.communication-module {
  margin: 40px 0;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comm-header {
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
}

.comm-icon {
  width: 40px;
  height: 40px;
  fill: white;
  margin-right: 15px;
}

.comm-header h4 {
  margin: 0;
  font-size: 1.3rem;
  color: white;
}

.comm-content {
  padding: 25px;
}

.comm-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.comm-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comm-step {
  display: flex;
  align-items: flex-start;
  background: #f8faff;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #2196f3;
}

.comm-step .step-number {
  width: 35px;
  height: 35px;
  background: #2196f3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-details h5 {
  margin: 0 0 5px 0;
  color: #07376b;
  font-size: 1rem;
}

.step-details p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.reconnaissance-container {
  margin: 40px 0;
  background: #f8faff;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ff9800;
}

.recon-intro {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #07376b;
}

.methane-model {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.methane-element {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff9800;
}

.methane-letter {
  width: 45px;
  height: 45px;
  background: #ff9800;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.methane-explanation h5 {
  margin: 0 0 5px 0;
  color: #07376b;
  font-size: 1rem;
}

.methane-explanation p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* After Action Component */
.after-action {
  margin: 40px 0;
}

.action-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.action-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-top: 4px solid #3a7bfd;
}

.action-card:hover {
  transform: translateY(-8px);
}

.action-icon {
  width: 60px;
  height: 60px;
  background: #3a7bfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.action-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.action-card h4 {
  margin: 0 0 15px 0;
  color: #07376b;
  font-size: 1.2rem;
}

.action-card p {
  margin: 0;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

/* Fix content-paragraph styling */
.content-paragraph {
  font-size: 1rem;
  color: #333;
  margin: 20px 0;
  line-height: 1.7;
}

/* Fix section-heading to avoid conflicts */
.content-section .section-heading {
  color: #07376b;
  font-size: 1.4rem;
  margin: 30px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #3a7bfd;
}

/* Fix activity slots and method advantages spacing */
.activity-slot {
  background: #3a7bfd;
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 5px;
  display: inline-block;
}

.method-advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

/* Fix scenario challenges layout */
.scenario-challenges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

/* Fix upcoming pages preview */
.upcoming-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.upcoming-page {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4caf50;
  transition: transform 0.3s ease;
}

.upcoming-page:hover {
  transform: translateY(-5px);
}

.upcoming-page .page-icon {
  width: 50px;
  height: 50px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.upcoming-page .page-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.upcoming-page .page-info h4 {
  margin: 0 0 8px 0;
  color: #07376b;
  font-size: 1rem;
}

.upcoming-page .page-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Ensure proper spacing for all components */
.content-section > * {
  margin-bottom: 30px;
}

.content-section > *:last-child {
  margin-bottom: 0;
}

/* Fix any icon sizing issues */
.content-section .icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.content-section .icon-svg.icon-xl {
  width: 36px;
  height: 36px;
}

.content-section .icon-svg.icon-large {
  width: 30px;
  height: 30px;
}

.content-section .info-card,
.content-section .factor-card,
.content-section .action-card,
.content-section .scenario-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.content-section .info-card:hover,
.content-section .factor-card:hover,
.content-section .action-card:hover,
.content-section .scenario-card:hover {
  transform: translateY(-5px);
}

.fire-triangle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  padding: 25px;
  background: #f8faff;
  border-radius: 15px;
  border-left: 5px solid #ff5722;
}

.fire-triangle {
  position: relative;
  width: 100%;
  max-width: 315px;
  max-height: 350px;
  margin: 0 auto 30px;
}

.fire-triangle-image {
  max-width: 100%;
  max-height: 400px;
  margin: auto;
}

.fire-triangle-explanation {
  max-width: 600px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #07376b;
}

/* Update the responsive styles */
@media (max-width: 768px) {
  .main {
    max-width: 88%;
  }

  .service-cards-container {
    grid-template-columns: 1fr;
  }
  
  .sitrap-elements {
    grid-template-columns: 1fr;
  }
  
  .comparison-row {
    flex-direction: column;
  }
  
  .dos-cell, .donts-cell {
    padding: 12px 15px;
  }
  
  .protocol-step:hover {
    transform: none;
  }

  .admin-toggle-btn {
    padding: 4px 0;
    margin: 0 8px;
    min-width: 100px;
  }

  .grid-container, 
  .importance-container,
  .assessment-points,
  .role-benefits {
    grid-template-columns: 1fr;
  }
  
  .intro-banner,
  .alert-box,
  .fact-callout,
  .tip-box {
    flex-direction: column;
  }
  
  .banner-icon,
  .alert-icon,
  .fact-icon,
  .tip-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }

  /* Page counter */
  .footer-page-counter {
    display: none;
  }

  .org-level-3 {
    flex-direction: column;
    align-items: center;
  }
  
  .org-child {
    margin: 10px auto;
  }
  
  .bhv-materials {
    justify-content: space-around;
  }
  
  .material-item {
    width: 140px;
    margin: 5px;
  }
  
  .task-cards {
    grid-template-columns: 1fr;
  }
  
  .checklist-items {
    grid-template-columns: 1fr;
  }

  .bhv-cycle-simple {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
    width: 300px;
  }

  .cycle-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto;
  }

  .cycle-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
    margin: auto;
  }

  .cycle-item,
  .cycle-item:nth-child(1),
  .cycle-item:nth-child(2),
  .cycle-item:nth-child(3),
  .cycle-item:nth-child(4) {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .cycle-item:hover,
  .cycle-item:nth-child(1):hover,
  .cycle-item:nth-child(2):hover,
  .cycle-item:nth-child(3):hover,
  .cycle-item:nth-child(4):hover {
    transform: translateY(-5px);
  }

  .pyramid-level.fatal,
  .pyramid-level.serious,
  .pyramid-level.minor,
  .pyramid-level.incidents,
  .pyramid-level.unsafe {
    width: 100%;
    margin-left: 0;
  }
  
  .behavior-comparison {
    grid-template-columns: 1fr;
  }
  
  .matrix-grid {
    font-size: 0.8rem;
  }
  
  .principle-cards,
  .hazard-grid,
  .modern-checklist {
    grid-template-columns: 1fr;
  }

    .layers-container {
    gap: 20px;
  }
  
  .responsibility-layer {
    flex-direction: column;
    text-align: center;
  }
  
  .layer-number {
    margin: 0 auto 20px;
  }
  
  .mindset-grid,
  .development-areas,
  .reminder-categories,
  .courage-examples {
    grid-template-columns: 1fr;
  }
  
  .decision-process {
    margin: 0 10px;
  }
  
  .decision-step::after {
    display: none;
  }
  
  .layer-examples {
    justify-content: center;
  }
  
  .action-tag {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  
  .mindset-section,
  .courage-section {
    padding: 20px;
  }

  .decay-timeline,
  .benefits-grid,
  .frequency-calendar,
  .muscle-examples,
  .motivation-cards {
    grid-template-columns: 1fr;
  }
  
  .tab-navigation {
    flex-direction: column;
  }
  
  .tab-btn {
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  
  .tab-btn.active {
    border-left-color: #3a7bfd;
  }
  
  .conclusion-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .goal-options,
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  
  .key-message {
    flex-direction: column;
    text-align: center;
  }
  
  .message-icon {
    margin: 0 auto 15px;
  }
  
  .skill-decay-model,
  .muscle-memory-section,
  .chapter-conclusion {
    padding: 20px;
  }

   /* Fix chaos to control on mobile */
  .chaos-to-control {
    flex-direction: column;
    gap: 20px;
  }
  
  .transformation-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  /* Fix grid layouts on mobile */
  .overview-grid,
  .scenario-cards,
  .factors-grid,
  .upcoming-pages,
  .action-grid,
  .methane-model {
    grid-template-columns: 1fr;
  }
  
  /* Fix tree branches on mobile */
  .tree-branches {
    flex-direction: column;
    gap: 10px;
  }
  
  .branch-left,
  .branch-center {
    justify-content: center;
  }
  
  /* Fix phase content padding */
  .phase-content {
    padding: 20px 15px;
  }
  
  /* Fix communication steps on mobile */
  .comm-steps {
    gap: 12px;
  }
  
  .comm-step {
    padding: 12px;
  }
  
  .comm-step .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  /* Fix METHANE on mobile */
  .methane-quick,
  .sbar-method {
    grid-template-columns: 1fr;
  }
  
  /* Fix parallel tasks on mobile */
  .parallel-tasks {
    flex-direction: column;
    align-items: center;
  }
  
  /* Fix section paddings */
  .chapter-introduction,
  .inzet-philosophy,
  .chapter-transition {
    padding: 20px 15px;
  }
  
  /* Fix tree container */
  .tree-container {
    padding: 15px;
  }
  
  .tree-node {
    min-width: auto;
    width: 100%;
    max-width: 250px;
  }
  
  /* Fix reconnaissance container */
  .reconnaissance-container {
    padding: 20px 15px;
  }
  
  /* Fix communication module */
  .comm-content {
    padding: 20px 15px;
  }
  
  /* Fix action grid */
  .action-grid {
    gap: 20px;
  }
  
  /* Fix scenario cards */
  .scenario-cards {
    gap: 20px;
  }
  
  .scenario-content {
    padding: 15px;
  }
  
  /* Fix phase container */
  .phase-container {
    gap: 25px;
  }
  
  /* Fix method advantages on mobile */
  .method-advantages {
    justify-content: flex-start;
  }
  
  .advantage-tag {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  
  /* Fix challenge tags */
  .challenge-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .fire-triangle-container {
    padding: 15px;
  }
}