    .sec5b-outer {
      position: relative;
      width: 100%;
    }
    .sec5b-bg {
      display: block;
      width: 100%;
      height: auto;
      z-index: 0;
    }
    .sec5b-inner {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .sec5b-title {
      font-family: 'Ivy Presto Text', serif;
      font-size: 53px;
      font-weight: 300;
      line-height: 1.5;
      color: #e0e0e0;
      text-align: center;
      margin-bottom: 75px;
    }
    .sec5b-accent {
      font-style: italic;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: #e0e0e0;
      color: #ffcdd4;
      padding-right: 6px;
    }
    .sec5b-list {
      list-style: none;
      padding: 0;
      margin: 0 0 0 37px;
      max-width: 440px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .sec5b-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    .sec5b-icon {
      width: 43px;
      height: 43px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .sec5b-text {
      font-family: 'League Spartan', sans-serif;
      font-size: 21px;
      font-weight: 400;
      line-height: 1.5;
      color: #e0e0e0;
    }
    .sec5b-highlight {
      font-weight: 700;
      color: #ffcdd4;
      text-decoration: underline;
      text-decoration-color: #e0e0e0;
    }

    /* Mid-range (769px – 1279px): image too short for absolute content */
    @media (min-width: 769px) and (max-width: 1279px) {
      .sec5b-outer {
        background-image: url('../images/sec4-background.webp');
        background-size: cover;
        background-position: center;
      }
      .sec5b-bg {
        display: none;
      }
      .sec5b-inner {
        position: relative;
        padding: 70px 40px 80px;
      }
      .sec5b-list {
        margin-left: 37px;
        max-width: 500px;
      }
    }

    /* Tablet */
    @media (max-width: 768px) {
      .sec5b-outer {
        background-image: url('../images/sec4-background.webp');
        background-size: cover;
        background-position: center;
      }
      .sec5b-bg {
        display: none;
      }
      .sec5b-inner {
        position: relative;
        padding: 50px 40px 60px;
      }
      .sec5b-list {
        margin-left: 0;
        max-width: 100%;
      }
      .sec5b-title {
        font-size: 32px;
        margin-bottom: 36px;
      }
      .sec5b-text {
        font-size: 20px;
      }
      .sec5b-icon {
        width: 40px;
        height: 40px;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {
      .sec5b-outer {
        background-position: calc(50% - 200px) center;
      }
      .sec5b-outer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 0;
      }
      .sec5b-inner {
        z-index: 1;
        padding: 55px 24px 50px;
      }
      .sec5b-list {
        margin-left: 0;
        max-width: 100%;
        padding-left: 5px;
      }
      .sec5b-title {
        font-size: 28px;
        margin-bottom: 48px;
      }
      .sec5b-text {
        font-size: 16px;
      }
      .sec5b-icon {
        width: 42px;
        height: 42px;
      }
      .sec5b-item {
        gap: 14px;
      }
      .sec5b-list {
        padding-bottom: 10px;
      }
    }
