html,
body {
  height: 100%;
  height: 100vh;
  position: fixed;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

html,
body {
  scroll-behavior: smooth;
}

@supports (height: 100dvh) {

  html,
  body {
    height: 100dvh;
  }
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ebfafd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.main-content p {
  font-size: 1em;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Header-specific styles */
.header {
  background-color: #004799;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
}

.header-logo {
  width: 150px;
  margin-left: 20px;
  position: relative;
  z-index: 3;
  align-self: flex-start;
  margin-top: 10px;
  margin-bottom: 20px;
}

.header-content {
  position: absolute;
  bottom: 10px;
  left: 40px;
  z-index: 3;
  margin-top: 20px;
}

.header-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  white-space: nowrap;
  align-self: flex-start;
}

/* .header-image-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    overflow: hidden;
    border-radius: 100% 0 0 100%;
    z-index: 1;
}

.header-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: opacity(0.7);
} */

.header-image-container {
  position: absolute;
  right: 0;
  top: 50%;
  width: 300px;
  /* Match the width of accent-4 */
  height: 300px;
  /* Match the height of accent-4 */
  overflow: hidden;
  border-radius: 150px 0 0 150px;
  /* Half of the width and height for a perfect semi-circle */
  transform: translateY(-50%);
  /* Center vertically */
  z-index: 1;
}

.header-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: opacity(0.7);
}

.circular-accent-container {
  position: absolute;
  top: 50%;
  right: 150px;
  /* This div itself has no dimensions, it's just a reference point */
}

.circular-accent {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 150%;
  /* Center each accent on the container's position */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accent-1 {
  width: 600px;
  height: 600px;
}

.accent-2 {
  width: 500px;
  height: 500px;
}

.accent-3 {
  width: 400px;
  height: 400px;
}

@media (max-width: 450px) {
  .header-image-container {
    right: -100px;
  }

  .circular-accent-container {
    position: absolute;
    right: 50px;
  }
}

@media (max-width: 450px) {
  .header-logo {
    width: 120px;
  }

  .header-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
}

.intro-text {
  max-width: 800px;
  width: 90%;
  margin: 20px;
  padding: 20px;
  border: solid 1px #004799;
  border-radius: 10px;
}

.intro-text h1 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  color: #004799;
}

/* Category grid styles */
.category-grid {
  display: grid;
  gap: 15px;
  max-width: 840px;
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 10px;
}

.category-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 2px solid #004799;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  height: 120px;
  text-decoration: none;
}

.category-button:hover {
  background-color: #ddedff;
}

.category-button.selected {
  background-color: #004799;
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.category-button:not(.selected) .icon {
  filter: invert(100%) sepia(0%) saturate(100%) hue-rotate(201deg) brightness(94%) contrast(100%);
}

.category-button.selected .icon {
  filter: brightness(0) invert(1);
}

.label {
  color: #004799;
  font-weight: bold;
  text-align: center;
}

.category-button.selected .label {
  color: white;
}

.page-toc-wrapper {
  box-sizing: border-box;
  margin-top: 24px;
  max-width: 840px;
  width: 100%;
  padding: 0 20px 20px;
  text-align: center;
}

.page-toc-wrapper h2 {
  color: #004799;
  font-size: 1.2em;
  margin: 0 0 12px;
}

.page-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.page-toc a {
  background-color: white;
  border: 1px solid #004799;
  border-radius: 6px;
  color: #004799;
  font-weight: bold;
  padding: 8px 12px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.page-toc a:hover {
  background-color: #004799;
  color: white;
}

.sector-download-button {
  background-color: #004799;
  border: 2px solid #004799;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 10px 18px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.sector-download-button:hover {
  background-color: white;
  color: #004799;
}

/* Responsive design */
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .category-button {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) and (min-width: 488px) {
  .icon {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .category-button {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
  }
}

.section_box {
  max-width: 900px;
  width: 100%;
  margin: 10px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #004799;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-margin-top: 32px;
}

.section_box h2 {
  color: #004799;
  margin-bottom: 10px;
  margin-top: 0px;
}

.section-header {
  position: relative;
  width: 100%;
}

.section-header h2 {
  box-sizing: border-box;
  padding: 0 72px;
  text-align: center;
  width: 100%;
}

.section-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid #004799;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  gap: 6px;
  height: 30px;
  justify-content: center;
  padding: 6px 8px;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
}

.section-toggle:hover {
  background-color: #e6f0ff;
}

.section-toggle-icon {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #004799;
  display: inline-block;
  height: 0;
  width: 0;
}

.section-toggle:focus-visible {
  outline: 2px solid #004799;
  outline-offset: 2px;
}

.section-toggle-text {
  color: #004799;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
}

.section-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#newcomer-perspective-content .perspective-statement {
  color: #163653;
  font-size: 1.3em;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
  max-width: 900px;
  text-align: center;
}

.collapsible-section.collapsed .section-content {
  display: none;
}

.collapsible-section.collapsed .section-toggle-icon {
  border-bottom: 7px solid transparent;
  border-left: 10px solid #004799;
  border-right: 0;
  border-top: 7px solid transparent;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.map-placeholder {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  min-height: 320px;
  margin: 0 auto;
  border: 2px dashed #8b8b8b;
  background: #f5f5f5;
  color: #555;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

/* Carousel Wrapper */
.org-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-top: 20px;
  margin-bottom: 40px;
  border: 1px solid #004799;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
}

/* Carousel Container */
.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 8px;
  padding: 10px 0;
  margin: 0;
  height: 200px;
  align-items: center;
}

/* Organization Cards */
.org-card {
  flex: 0 0 160px;
  height: 160px;
  padding: 8px;
  background-color: #004799;
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

.org-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  color: white;
}

.org-card p {
  margin: 0;
  font-size: 0.9em;
  color: white;
}

.org-card.selected {
  background-color: #38e5ed;
  z-index: 2;
}

.org-card.selected h3 {
  color: #004799;
}

.org-card.selected p {
  color: #004799;
}

/* Carousel Buttons */
.carousel-button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #004799;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.carousel-button.prev {
  left: 0px;
}

.carousel-button.next {
  right: 0px;
}

/* selected organization styles */
.selected-organization-information-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.selected-organization-information-container h2 {
  text-align: center;
}

.org-details {
  display: flex;
}

.org-column {
  align-items: center; /* Align items to the start (top) */
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

.org-column h3 {
  flex-grow: 0;
  margin-bottom: 5;
  box-sizing: border-box;
  text-align: center;
}

.org-column ul {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  vertical-align: top;
  padding: 25px;
  margin: 0;
  list-style-type: disc;
  max-width: 900px;
}

/* end selected organization styles */

/* Responsive Adjustments */
@media (min-width: 768px) {
  .org-carousel-wrapper {
    max-width: 800px;
    /* Increased max-width for larger screens */
    height: 220px;
  }

  .carousel-container {
    gap: 8px;
  }

  .org-card {
    flex: 0 0 160px;
    height: 160px;
  }
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}

/*sector chart styles*/
.sector_chart {
  margin-top: 20px;
  margin-bottom: 20px;
}

.sector_chart body {
  font-family: Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f0f0f0;
}

.sector_chart h3 {
  color: #004799;
  margin-bottom: 10px;
}

.sector_chart .chart {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.sector_chart .chart h2 {
  margin-top: 0;
  color: #444;
}

.sector_chart .chart-container {
  position: relative;
  padding-left: 200px;
  padding-bottom: 5px;
  transform: translateX(-15%);
}

.sector_chart .chart-grid {
  position: absolute;
  top: 0;
  left: 200px;
  right: 0;
  bottom: 20px;
  z-index: 1;
}

.sector_chart .grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ccc;
}

.sector_chart .grid-line span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.sector_chart .grid-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid #ccc;
}

.chart-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #4a4a4a;
}

.sector_chart .chart-group {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
  padding-bottom: 10px;
  display: block;
  min-height: 60px;
}

.sector_chart .chart-label {
  position: absolute;
  left: -150px;
  width: 140px;
  text-align: left;
  padding-right: 10px;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.sector_chart .chart-bars {
  display: flex;
  flex-direction: column;
}

.sector_chart .bar-row {
  height: 25px;
  margin-bottom: 5px;
}

.sector_chart .bar-group {
  display: flex;
  height: 100%;
  justify-content: flex-start;
  position: relative;
}

.sector_chart .bar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 100%;
  position: relative;
}

.sector_chart .bar-zero {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 100%;
  position: relative;
}

.in-now .bar-label {
  z-index: 2;
  color: rgba(0, 0, 0, 0.9);
}

.in-future {
  width: 100%;
}

.in-future .bar-label {
  z-index: 2;
  padding-left: 100;
  flex: 1;
  text-align: center;
  width: 100%;
}

.sector_chart .in-future .bar-label {
  padding-left: 10px;
  z-index: 2;
}

.sector_chart .out-now .bar-label {
  right: auto;
  left: 100%;
  padding-left: 15px;
  z-index: 2;
}

.sector_chart .out-future .bar-label {
  right: auto;
  left: 100%;
  padding-left: 30px;
  z-index: 2;
}

.sector_chart .bar-label-zero {
  padding-left: 25px;
  z-index: 2;
  color: rgb(0, 0, 0);
}

.in-now {
  background-color: #40e0d0;
}

.sector_chart .out-now {
  background-color: #00008b;
  color: white;
}

.sector_chart .out-future {
  background-color: #87ceeb;
  color: rgb(0, 0, 0);
}

.sector_chart .resp {
  background-color: #4169e1;
  color: white;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sector_chart .chart-legend {
  position: relative;
  z-index: 3;
}

.sector_chart .legend-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 5px;
  background-color: transparent;
  color: black;
}

.sector_chart .legend-item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 5px;
}

.legend-item.in-now::before {
  background-color: #40e0d0;
}

.sector_chart .legend-item.in-future::before {
  background-color: #a0ffff;
}

.sector_chart .legend-item.out-now::before {
  background-color: #00008b;
}

.sector_chart .legend-item.out-future::before {
  background-color: #87cefa;
}

.sector_chart .legend-item.resp::before {
  background-color: #4169e1;
}

/* Chart styles */
.charts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.subcharts-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 5px;
  column-gap: 25px;
  padding: 20px;
}

.subcharts-container h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.subchart {
  background-color: white;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 10px;
  max-width: 220px;
}

.subchart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.8em;
}

.comfort-subcharts {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.comfort-comparison-chart .chart-legend {
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.comfort-comparison-chart .legend-item {
  justify-content: flex-start;
  width: auto;
}

.comfort-subchart {
  box-sizing: border-box;
  max-width: none;
}

.comfort-subchart .chart-group {
  grid-template-columns: minmax(150px, 44%) minmax(120px, 1fr);
}

@media (max-width: 768px) {
  .comfort-subcharts {
    grid-template-columns: 1fr;
  }
}

.big-chart {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.big-chart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.big-chart:not(.sector_chart) .chart-bars::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -20px;
  left: -1px;
  width: 1px;
  background-color: #ccc;
}

.chart {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  flex: 1 1 380px;
  padding: 20px;
  margin-bottom: 30px;
  max-width: 420px;
}

.chart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.chart-container {
  position: relative;
  width: 100%;
}

.chart:not(.sector_chart) .chart-bars::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -20px;
  left: -1px;
  width: 1px;
  background-color: #ccc;
}

.chart-group {
  position: relative;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(155px, 45%) minmax(120px, 1fr);
  column-gap: 16px;
  align-items: stretch;
  padding-bottom: 0;
  min-height: 40px;
}

.chart-label {
  align-self: center;
  position: static;
  width: auto;
  text-align: left;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.chart-label-first-word {
  font-weight: bold;
}

.chart-bars {
  flex-grow: 1;
  min-width: 0;
  position: relative;
}

.chart:not(.sector_chart) .chart-bars,
.big-chart:not(.sector_chart) .chart-bars,
.solo-chart:not(.sector_chart) .chart-bars {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bar-row {
  margin-bottom: 5px;
  height: 25px;
}

.sector-bar-group {
  background-color: #a0ffff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
  position: relative;
}

.bar-group {
  background-color: #00ffff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
  position: relative;
}

.bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  color: #333;
  font-size: 12px;
  height: 30px;
  width: 100%;
  position: relative;
  margin-left: 8px;
}

.sector-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 12px;
  width: 100%;
  position: relative;
}

.bar-zero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #333;
  font-size: 12px;
  height: 100%;
  margin-left: 13px;
  width: 100%;
  position: relative;
}

.solo-chart {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
  max-width: 300px;
}

.solo-chart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.solo-chart-container {
  position: relative;
  padding-left: 200px;
  transform: translateX(-25%);
  width: 50%;
}

.solo-chart:not(.sector_chart) .chart-bars::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -20px;
  left: -1px;
  width: 1px;
  background-color: #ccc;
}

.solo-chart-group {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 0;
  min-height: 0px;
}

.solo-chart-label {
  align-self: center;
  position: static;
  width: auto;
  text-align: left;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.solo-chart .sector-bar-group {
  margin-left: 0 !important;
}

.solo-bar-group {
  background-color: #00ffff;
  display: flex;
  height: 30px;
  width: 80%;
  left: 31px;
  justify-content: flex-start;
  position: relative;
  min-width: 13px;
}

.zero-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #333;
  font-size: 12px;
  height: 100%;
  padding-left: 5px;
}

/* Newcomer Journey styles */
.journey-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-image-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.journey-curve {
  display: block;
  width: 75%;
  height: auto;
  max-width: none;
  margin: 0 auto;
}

.journey-text {
  width: 100%;
  margin-bottom: 20px;
}

.journey-text h3 {
  color: #004799;
  margin-bottom: 10px;
  text-align: center;
}

.journey-stage-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.journey-stage-summary p {
  margin: 0;
  padding: 10px 12px;
  background-color: #f0f8ff;
}

.journey-phases {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.phase {
  flex-basis: calc(25% - 15px);
  margin-bottom: 20px;
  background-color: #f0f8ff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phase-header {
  position: relative;
  padding: 10px 15px;
  color: white;
  font-weight: bold;
}

.phase-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid inherit;
}

.euphoria {
  background-color: #000000;
}

.culture-shock {
  background-color: #004799;
}

.acculturation {
  background-color: #4682b4;
}

.stable-state {
  background-color: #87ceeb;
}

.stable-state h3 {
  color: #000000;
}

.phase-header h3 {
  margin: 0;
  font-size: 1em;
}

.phase ul {
  flex-grow: 1;
  padding: 15px;
  margin: 0;
  list-style-type: disc;
}

.phase li {
  margin-bottom: 5px;
  font-size: 0.9em;
}

.phase li.phase-empty-note {
  font-style: italic;
  list-style: none;
  text-align: center;
}

.hidden {
  display: none;
}

.more-btn {
  background-color: transparent;
  color: #004799;
  border: 2px solid #004799;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  text-align: center;
  margin: 0;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.more-btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.more-btn.less .arrow {
  transform: rotate(180deg);
}

/* Responsive design for Newcomer Journey */
@media (max-width: 768px) {
  .phase {
    flex-basis: 100%;
    margin-bottom: 15px;
  }

  .phase-header::after {
    display: none;
  }
}

.desktop-more-btn {
  display: none;
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .phase .more-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-more-btn {
    display: none !important;
  }
}

.site-footer {
  background-color: #ebfafd;
  padding: 10px 20px;
  margin-top: 20px;
}

.response-count-note {
  font-size: 1.1em;
}

.journey-context-note {
  text-align: center;
}

.footer-content {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
  min-height: 40px;
}

.footer-contact-info {
  font-size: 0.9em;
  margin-top: 0px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.footer-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.footer-button {
  flex: 1;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.footer-button.primary {
  background-color: #0056b3;
  color: white;
}

.footer-button.primary:hover {
  background-color: #003d82;
}

.footer-button.secondary {
  background-color: white;
  color: #0056b3;
  border: 1px solid #0056b3;
}

.footer-button.secondary:hover {
  background-color: #e6f0ff;
}

@media (max-width: 480px) {
  .footer-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-button {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
}

.two-column-container {
  display: flex;
  justify-content: space-between;
}

.chart-wrapper {
  flex: 1;
  margin: 25px;
}

.insight-box {
  margin: 25px;
}

/* CODE TO ADD A BORDER TO FEATURES
   * I use this a lot when I'm working with CSS 

  border-width: 1px;
  border-style: solid;
  border-color: rgb(0, 0, 0);

    */
