.two-col-sticky-otr {
/*     padding-bottom: 80px; */
}
.two-col-sticky-row {
  align-items: flex-start;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}



.sticky-content-col {
  flex: 1;
  min-width: 0;
}

.sticky-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-nav li {
  margin-bottom: 10px;
}

.sticky-nav a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  background: #f9f9f9;
  border-radius: 5px;
  transition: 0.3s;
}

.sticky-nav a.active {
  background: #FF3600;
  color: #fff;
  border-radius: 0;
}
.sticky-section:not(:last-child) {
  margin-bottom: 80px; /* adjust as needed */
}
.two-col-sticky-row {
  display: block;  /* stack layout instead of flex */
  width: 100%;
  padding: 0 16px;
}
.scroll-sec-inr {
/*     border-bottom: 2px solid #FF3600; */
    padding-bottom: 80px;
}

.sticky-section:not(:last-child) {
    border-bottom: 2px solid #FF3600;
}
/* Sticky nav as horizontal row */
.sticky-nav-col {
  position: sticky;
  top: 115px;
  width: 100%;
  margin-bottom: 60px;
/*   padding: 15px 0; */
/*     background-color: #f9f9f9; */
}

.sticky-nav {
  display: flex;       /* horizontal layout */
/*   gap: 1rem;           /* spacing between links */ */
  flex-wrap: wrap;     /* allow wrapping on smaller screens */
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}

.sticky-nav li {
  margin: 0;           /* reset bottom margin */
  flex: 0 33.34%;
}

.sticky-nav a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
/*   background: #f9f9f9; */
/*   border-radius: 5px; */
  transition: 0.3s;
/*   border:1px solid #FF3600; */
  padding:15px;
  text-align: center;
}

/* Mobile fallback: disable sticky */
@media (max-width: 768px) {
  ul.sticky-nav {
    display: block;
    margin-bottom: 40px;
}
  .two-col-sticky-otr {

    padding:0 16px 60px 16px;
}
  .two-col-sticky-row {
    flex-direction: column;
  }
  .sticky-nav-col {
    position: relative;
    top: auto;
    width: 100%;
    margin-bottom: 1rem;
  }
  .scroll-sec-inr {
    padding-bottom: 0;
}
}
