/* SUBPAGE HERO */
    .subpagesection-padding {
      padding: 4rem 0;
      background-color: #ffffff;
    }

    .subpagehero-section {
      position: relative;
      background: url('../images/subheader.webp') center center / cover no-repeat;
      color: #ffffff;
      min-height: 400px;
      display: flex;
      align-items: center;
    }

    .subpagehero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
    }

    .subpagehero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 1080px;
      margin-inline: auto;
      padding: 4rem 1rem;
    }

    .subpagehero-title {
      font-weight: 700;
      font-size: clamp(3.5rem, 3vw, 2.4rem);
      line-height: 1.3;
      margin-top: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .subpagehero-subtitle {
      font-size: 1.4rem;
      max-width: 880px;
      margin: 0 auto;
      font-weight: 300;
    }

    .breadcrumb a:after {
      content: '\0276F';
      margin-left: 10px;
      font-size: 11px;
      position: relative;
      top: -2px;
    }
    .breadcrumb a:hover {
      color: rgba(255, 255, 255, 0.7) !important;
    }

    .breadcrumb-item+.breadcrumb-item::before {
      display: none;
    }

    .subpagesection-padding .news-card {
      margin-bottom: 0;
    }

    /* Wrapper */
    .steps-wrapper {
      position: relative;
      padding-left: 20px;
      margin-top: 40px;
    }

    /* Vertical Line */
    .steps-wrapper::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 0;
      width: 4px;
      height: 100%;
      /* background: linear-gradient(to bottom, #0d6efd, #0d6efd33); */
      background: rgba(0,0,0,0.1) !important;
      border-radius: 4px;
    }

    /* Step Item */
    .step-item {
      position: relative;
      padding-left: 40px;
      margin-bottom: 50px;
    }

    /* Marker Dots */
    .step-marker {
      position: absolute;
      left: -17px !important;
      top: 28px !important;
      width: 18px;
      height: 18px;
      background: #01417e !important;
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(13,110,253,0.2);
    }

    /* Step Card */
    .step-content {
      padding: 25px 30px;
      border-radius: 12px;
      border: 1px solid #efefef;
      transition: all .2s ease;
    }

    .step-content .text-primary {
      color: #01417e !important;
    }

    /* Hover Elevation */
    .step-content:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }


  @media (max-width: 991.98px) {
      .subpagesection-padding {
      padding: 2rem 0;
      }

      .subpagehero-section {
        min-height: 250px;
      }

      .subpagehero-content {
        padding: 2rem 0;
      }

      .subpagehero-title {
        font-size: clamp(2rem, 3vw, 1.4rem);
        line-height: 1.2;
      }

      .subpagehero-subtitle {
        font-size: 1rem;
        line-height: 1.2;
      }
  }

  /* Mobile Optimization */
  @media (max-width: 767px) {
    .steps-wrapper::before {
        left: 8px;
    }
    .step-item {
        padding-left: 35px;
    }
    .step-content {
        padding: 20px;
    }
    .step-marker {
        width: 14px;
        height: 14px;
    }
}