/* Extra responsiveness */
    .strike-price {
      text-decoration: line-through;
      color: #888;
      font-size: 1.5rem;
    }
    .discount-price {
      color: #28a745;
      font-size: 2rem;
      font-weight: bold;
    }
    .feature h3 {
      font-size: 1rem;
    }
    @media (min-width: 768px) {
      .feature h3 {
        font-size: 1.1rem;
      }
    }
    @media (min-width: 992px) {
      .feature h3 {
        font-size: 1.2rem;
      }
    }
    .feature-icon {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    /* Diagonal green stripe */
    .feature-icon::before {
      content: '';
      position: absolute;
      width: 50%;
      height: 30px;
      background-color: #2f7f2f;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-40deg);
      z-index: 0;
    }
    .feature-icon img {
      position: relative;
      z-index: 1;
    }
    /* Title styling */
    .feature h3 {
      font-weight: 700;
      font-size: 1.25rem;
      text-align: center;
      margin-top: 0.5rem;
      padding-bottom: 0 !important;
    }
    /* Custom dotted border */
    .border-dotted {
      border-style: dotted !important;
    }
    /* Heading style */
    .warning-title {
      color: #e32737;
      font-size: 1.2rem;
      font-weight: bold;
    }
    /* Paragraph styles */
    .warning-text {
      font-size: 1rem;
      line-height: 1.2;
      margin-bottom: 6px;
    }
    @media (max-width: 576px) {
      .warning-title {
        font-size: 1.2rem;
      }
      .warning-text {
        font-size: 0.9rem;
        line-height: 1.3;
      }
    }
    .instructions {
      background-color: #fff;
      color: #222;
      padding: 50px 40px;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .instructions h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 50px;
      color: black;
      letter-spacing: 0.04em;
    }
    .step {
      background: #daf5d4;
      border-radius: 14px;
      box-shadow: 0 4px 12px rgba(47, 122, 47, 0.3);
      padding: 20px 15px;
      margin-bottom: 20px;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
      outline-offset: 4px;
      text-align: center;
      user-select: none;
    }
    .step:hover,
    .step:focus-visible {
      background-color: #b7e0a8;
      box-shadow: 0 6px 24px rgba(47, 122, 47, 0.5);
      outline: none;
    }
    .step-icon {
      font-size: 3.5rem;
      color: #28a745;
      margin-bottom: 16px;
      user-select: none;
    }
    .step-text {
      font-weight: 600;
      font-size: 1.15rem;
      color: #1e5c1e;
      line-height: 1.3;
      user-select: none;
    }
    .arrow-horizontal {
      width: 45px;
      height: 45px;
      border-top: 4px solid #28a745;
      border-right: 4px solid #28a745;
      transform: rotate(45deg);
      margin: auto 10px;
      box-shadow: 1px 1px 5px rgba(0,0,0,0.07);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .arrow-vertical {
      width: 45px;
      height: 45px;
      border-top: 4px solid #28a745;
      border-right: 4px solid #28a745;
      transform: rotate(135deg);
      margin: 10px auto;
      box-shadow: 1px 1px 5px rgba(0,0,0,0.07);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    @media (min-width: 768px) {
      .arrow-horizontal { display: block; }
      .arrow-vertical { display: none; }
    }
    @media (max-width: 767.98px) {
      .arrow-horizontal { display: none; }
      .arrow-vertical { display: block; }
    }
    /* Responsive separator style */
  .separator {
    border-left: 1px solid #ccc;
    height: 20px;
    width: auto;
  }
  @media (max-width: 767.98px) {
    .separator {
      border-left: none;
      border-top: 1px solid #ccc;
      width: 100%;
      height: 1px;
      margin: 0.5rem 0;
    }
  }