    /* WebwinkelKeur Badge Styling */
    .webwinkelkeur-badge {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1000000;
      transition: transform 0.3s ease;
      display: block;
    }

    .webwinkelkeur-badge img {
      width: 120px;
      height: auto;
      display: block;
    }

    .webwinkelkeur-badge:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .webwinkelkeur-badge {
        bottom: 70px;
        left: 15px;
      }

      .webwinkelkeur-badge img {
        width: 90px;
      }
    }

    /* Extra spacing below navbar */
    main {
      padding-top: 32px;
    }

    /* Activation step cards */
    .act-step {
      background: #111;
      border: 1px solid #2a2a2a;
      border-left: 4px solid #165df5;
      border-radius: 12px;
      padding: 1.5rem 1.75rem;
      margin-bottom: 1.5rem;
    }

    .act-step h2 {
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
    }

    .act-step p {
      margin-bottom: 0.75rem;
    }

    .act-step p:last-child {
      margin-bottom: 0;
    }

    .act-label {
      color: #165df5;
      font-weight: 700;
    }

    /* APN highlight box */
    .apn-box {
      background: #0b0b0b;
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin: 0.75rem 0 1rem;
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .apn-box .apn-key {
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .apn-box .apn-value {
      font-family: "Courier New", Courier, monospace;
      font-size: 1.05rem;
      font-weight: 700;
      color: #165df5;
      word-break: break-all;
    }

    /* Inline code chip for the APN value mentioned in running text */
    .apn-code {
      font-family: "Courier New", Courier, monospace;
      font-size: 0.9em;
      font-weight: 700;
      font-style: normal;
      color: #165df5;
      background: #0b0b0b;
      border: 1px solid #2a2a2a;
      border-radius: 5px;
      padding: 0.1em 0.4em;
      white-space: nowrap;
    }

    /* Path / menu route line */
    .act-path {
      background: #0b0b0b;
      border: 1px solid #2a2a2a;
      border-radius: 8px;
      padding: 0.85rem 1rem;
      font-size: 0.98rem;
      line-height: 1.6;
    }

    .act-note {
      font-size: 0.92rem;
      opacity: 0.85;
      font-style: italic;
    }

    .act-disclaimer {
      font-size: 0.85rem;
      opacity: 0.7;
      line-height: 1.6;
    }
  
