.brand_name {
  color: #6315ff;
  font-size: 70px;
  font-family: 'kavoon', cursive;
  text-align: left;
  margin-top: 20px;
  margin-left: 140px;
  margin-bottom: 0;

}

.logo_small {
  color: #6315ff;
  font-size: 20px;
  font-family: 'kavoon', cursive;
}

.title {
  color: rgb(73, 73, 73);
  font-size: 50px;
  font-family: 'Nunito';
  font-weight: bold;
  text-align: left;
  margin-top: 50px;
  padding-left: 50px;

}


.subtitle {
  font-size: 20px;
  text-align: left;
  font-family: 'Nunito';
  margin-top: 20px;
  margin-bottom: 40px;
  margin-left: 20px;
  padding-left: 50px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nunito {
  font-family: "Nunito", sans-serif;
}

.hover-bold:hover {
  font-weight: bold;
  font-style: italic;
  cursor: pointer;
  color: black;
}


.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  /* 4 equal-width columns */
  gap: 30px;
  max-width: calc(4 * 250px + 3 * 30px);
  align-items: start;
  justify-content: left;
  margin-left: 140px;
  margin-bottom: 30px;
}


.card {
  width: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
  background: white;
  height: auto;
}

.card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.Main {
  padding: 8px;
}

p {
  margin-top: 0;
  margin-bottom: 5px;
}

.summary {
  font-size: 14px;
  color: rgb(56, 56, 56);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  display: inline-block;
  width: 12px;
  transition: transform 0.2s ease;
}

.collapsible-content {
  font-family: 'Nunito';
  display: none;
  font-size: 18px;
  color: rgb(56, 56, 56);
  padding-top: 10px;
  padding-bottom: 25px;
  padding-left: 80px;
  padding-right: 80px;
  text-align: justify;
}

.collapsible-chapter {
  display: none;
  font-size: 14px;
  color: rgb(56, 56, 56);
  padding-top: 13px;
  padding-left: 35px;
  padding-bottom: 13px;
}

.content-header {
  font-size: 20px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between arrow and text */
  user-select: none;
  font-family: 'Nunito';
}

.content-container {
  
  margin-right: 50px;
  border-radius: 10px;
  border: 1px solid grey;
  margin-left: 50px;
}

.content-container_small {
  margin-right: 50px;
  border-radius: 10px;
  border: 1px solid #6315ff !important;
  margin-left: 30px;
  padding: 15px;
}

.content_flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.content_flex img {
  width: 700px;
  height: auto;
  display: block;
}

.progress-container {
  background-color: #e0e0e0;
  border-radius: 8px;
  height: 10px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #4caf50;
  /* Green */
  border-radius: 8px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  color: #333;
  margin-top: 4px;
  text-align: right;
}

.arrow_intro {

  width: 40px;
  height: 40px;
  background-color: #a172ff;
  color: #4202c1;
  border-radius: 50%;
  transition: transform 0.3s ease;
  display: flex;
  /* enable flexbox */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically */
  font-size: 25px;
  margin-right: 20px;
  line-height: 2;
  padding-left: 2px;
  padding-bottom: 2px;
}

.arrow_intro.rotated {
  transform: rotate(90deg);
}

.marketing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  margin-left: 140px;
  width: 600px;
  margin-bottom: 60px
}

.marketing_head {
  font-family: 'Nunito';
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
  color: rgb(87, 87, 87);
}

.marketing_sub {
  font-family: 'Nunito';
  font-size: 20px;
  text-align: justify;

}

.chapter_note {
  font-size: 12px;
  font-family: 'Nunito';
  text-align: justify;
  }

.header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
  margin-left: 50px;
  margin-right: 50px;
}

.header_v2 {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-left: 50px;
  margin-right: 50px;
}

.nav_bar_list {
  display: flex;
  gap: 30px;
  list-style-type: none;
}

.button_about {
  padding: 10px;
  font-family: 'Nunito';
  font-size: 13px;
  background-color: rgb(6, 230, 6);
  border-radius: 10px;
  border: none;
  color: black;
  text-decoration: none;
  display: block;
  margin-right: 0;
  margin-left: auto;
  text-align: center;
}

.nav_bar_list a {
  text-decoration: none;
  color: black;
  font-family: 'Nunito';
}

.nav_bar_list a:hover {
  font-style: italic;
  cursor: pointer;
}

.subchapter_list a {
  text-decoration: none;
  color: black;
}

.subchapter_list a:hover {
  cursor: pointer;
  font-style: italic;
}

/* Hide hamburger on large screens */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* On small screens */
@media (max-width: 1200px) {
  .nav_bar_list {
    display: none;
    flex-direction: column;
    gap: 0;
    background-color: white;
    position: absolute;
    top: 70px;
    /* below header */
    right: 50px;
    border: 1px solid #ccc;
    width: 200px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 5px;
    border-radius: 5px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
    ;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }
}

.chapter-status {
  font-family: 'Nunito';
  font-size: 14px;
  padding-top: 3px;
  padding-left: 19px;
}

ul {
  list-style-type: disc;
  padding-left: 50px;
}


.subsection {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  /* increase this value to make the spacing wider */
}


.glossary-table td {
  padding: 0.5em;
  vertical-align: top;
}

.term-tooltip {
  position: relative;
  cursor: help;
  font-weight: bold;
  color: green;
}

.tooltip-text {
  visibility: hidden;
  width: 250px;
  background-color: #f0f0f0;
  color: #333;
  text-align: left;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  /* show above the term */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.9em;
}

.term-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


h4 {
  font-size: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
}

/* === Table shell === */
.print-checklist {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Nunito', sans-serif;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: visible;
  border: 1px solid #ddd;
}

.print-checklist thead tr {
  background-color: #f0f4f8;
  color: #2c3e50;
  border-bottom: 2px solid #ccc;
}

.print-checklist th,
.print-checklist td {
  padding: 1rem;
  text-align: left;
}

.print-checklist tbody tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}

/* === Content layout inside the "What to Do" column === */
.cell-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cell-content img {
  width: 100%;           /* responsive */
  max-width: 250px;      /* keep images from getting too wide */
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cell-content figure {
  margin: 0;             /* remove default figure margin */
}

.sustainable_content {
  font-family:'Nunito';
  margin-right: 80px;
  margin-left: 50px;
  
  }

.sustainable_content2 {
  font-family:'Nunito';
  margin-right: 80px;
  margin-left: 50px;
  margin-top: 10px;
  
  }



