@media (min-width: 1200px) {
    .story-container {
        width: 1200px;
    }
}

.wc_statusbar {display:none;}

.hero-slider .slide-inner .slide-content {
background: rgb(0, 87, 184, .5) !important;
}
   
/* Center text content vertically in story timeline section */
.story-timeline .row {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.story-timeline .row .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ensure story text containers are centered */
.story-timeline .story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Prevent buttons from stretching full width */
.story-timeline .story-text .btn {
  align-self: flex-start;
  width: auto;
}

/* Add some spacing between rows */
.story-timeline .row + .row {
  margin-top: 3rem;
}

/* Ensure images remain responsive */
.story-timeline img {
  width: 100%;
  height: auto;
}

.story-timeline p {
margin-bottom: 20px;
}

/* Mobile responsiveness - stack normally on small screens */
@media (max-width: 991px) {
  .story-timeline .row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .story-timeline .row .col-md-6 {
    margin-bottom: 2rem;
  }
  
  /* Reset text alignment on mobile */
  .story-timeline .right-align-text {
    text-align: left !important;
  }
}  

    