<style>
/* Unified Steps Section Styling */
.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
}

.steps-box {
  display: flex;
  background: #f1f3f5;
  border-radius: 12px;
  overflow: hidden; /* seamless look */
  width: 100%;
  max-width: 700px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
  position: relative;
}

.steps-label {
  padding: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #343a40;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  background: #f1f3f5;
  position: relative;
  color: #495057; /* dark gray instead of black */
}

/* vertical line shorter than full height */
.steps-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12.5%;         /* start 12.5% from top */
  height: 75%;        /* only 75% tall */
  width: 2px;
  background-color: black;
  color: #495057; /* dark gray instead of black */
}

.steps-section {
  flex-grow: 1;
  padding: 1.5rem;
  max-height: 200px; /* fixed height so scrolling happens */
  overflow-y: auto;
  text-align: left;
  -ms-overflow-style: none;  /* hide scrollbar IE/Edge */
  scrollbar-width: none;     /* hide scrollbar Firefox */
}
.steps-section::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome/Safari */
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.5rem; /* larger text */
  line-height: 1.6;
  font-weight: bold;
  color: #495057; /* dark gray instead of black */
}

/* Reduce navbar padding */
.navbar {
    padding-top: 0.1rem !important;
    padding-bottom: 0.1rem !important;
    min-height: 0 !important;  /* prevents bootstrap from forcing tall navbars */
}

/* Remove extra padding from the brand container */
.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;  /* prevents tall text spacing */
}

/* Control logo size directly */
.navbar-brand img {
    height: 100px;   /* adjust to taste */
    width: auto;
    vertical-align: middle;
}

.feature-logo {
  height: 120px;
  width: 120px;
  object-fit: contain; /* keeps image proportional */
  margin-botom: 0.5rem;
}

</style>

