
  /* White wrapper for WordPress content */
  #steps-container {
      background: white;
      padding: 24px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      max-width: 1200px;
      margin: 0 auto;
  }

  /* Remove default card styling from all elements */
  #steps-container > * {
      background: transparent;
      padding: 0;
      box-shadow: none;
      margin-bottom: 12px;
  }

  /* Step headers - the "2. Pick Your Plan" style paragraphs */
  #steps-container > p {
      font-size: 19px;
      font-weight: 700;
      color: #1976d2;
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      padding: 12px 18px;
      border-radius: 6px;
      margin: 24px 0 16px 0;
      border-left: 5px solid #1976d2;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  /* First paragraph (intro text) */
  #steps-container > p:first-child {
      font-size: 15px;
      font-weight: normal;
      line-height: 1.5;
      background: transparent;
      padding: 0;
      border: none;
      margin-bottom: 16px;
  }

  /* Headings inside cards */
  #steps-container h3.wp-block-heading {
      color: #2c3e50;
      font-size: 16px;
      font-weight: 600;
      margin: 16px 0 8px 0;
      background: #e3f2fd;
      padding: 8px 14px;
      border-radius: 4px;
  }

  #steps-container h4.wp-block-heading {
      color: #1976d2;
      font-size: 15px;
      font-weight: 600;
      margin: 14px 0 8px 0;
      background: transparent;
  }

  /* Highlight boxes */
  #steps-container .wp-block-heading + .wp-block-list {
      background: #f8fbff;
      padding: 12px 16px;
      border-radius: 6px;
      margin: 8px 0;
      border: 1px solid #e3f2fd;
  }

  /* Lists with checkmarks */
  #steps-container .wp-block-list {
      list-style: none;
      padding-left: 0;
      margin: 8px 0;
  }

  #steps-container .wp-block-list li {
      padding-left: 24px;
      position: relative;
      margin-bottom: 6px;
      line-height: 1.5;
      color: #555;
      font-size: 14px;
  }

  #steps-container .wp-block-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #4CAF50;
      font-weight: bold;
      font-size: 16px;
  }

  /* Ordered lists */
  #steps-container ol.wp-block-list {
      padding-left: 20px;
      list-style: decimal;
      color: #555;
      margin: 8px 0;
  }

  #steps-container ol.wp-block-list li {
      padding-left: 8px;
      margin-bottom: 4px;
  }

  #steps-container ol.wp-block-list li::before {
      content: none;
  }

  /* Feature grid (plans table) */
  #steps-container .wp-block-table {
      width: 100%;
      margin: 16px 0;
      background: transparent;
      box-shadow: none;
      padding: 0;
  }

  #steps-container .wp-block-table table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 10px;
  }

  #steps-container .wp-block-table td {
      padding: 16px;
      background: #f8f9fa;
      border-radius: 8px;
      vertical-align: top;
      text-align: left;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      border: 1px solid #e0e0e0;
      font-size: 14px;
  }

  #steps-container .wp-block-table td br + text {
      display: block;
      margin-top: 6px;
      font-size: 13px;
      color: #666;
  }

  /* Buttons/Links */
  #steps-container a {
      display: inline-block;
      padding: 8px 20px;
      background: #1976d2;
      color: white !important;
      text-decoration: none;
      border-radius: 5px;
      margin: 8px 0;
      font-weight: 500;
      font-size: 14px;
      transition: background 0.3s;
      border: none;
  }

  #steps-container a:hover {
      background: #1565c0;
  }

  #steps-container a.status-completed {
      background: #4CAF50;
  }

  #steps-container a.status-completed:hover {
      background: #45a049;
  }

  /* Strong text styling */
  #steps-container strong {
      color: #2c3e50;
      font-weight: 600;
  }

  /* Paragraph spacing */
  #steps-container p {
      line-height: 1.5;
      color: #555;
      margin-bottom: 8px;
      font-size: 14px;
  }

  /* Special styling for feature bullet points with strong text */
  #steps-container .wp-block-list li strong {
      display: block;
      margin-bottom: 2px;
      color: #1976d2;
  }

  /* Emoji section headers like "🔌 From Your CRM" */
  #steps-container > p:not(:first-child) {
      font-size: 16px;
      padding: 12px 16px;
      font-weight: 700;
      background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
      border-left: 4px solid #1976d2;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }

  /* Remove excessive margins between related elements */
  #steps-container h3 + ul,
  #steps-container h3 + ol,
  #steps-container h3 + p {
      margin-top: 8px;
  }

  #steps-container p + ul,
  #steps-container p + ol {
      margin-top: 6px;
  }
  /* Coming Soon badge */
  .coming-soon,
  .badge-coming-soon {
      display: inline-block;
      background: #fff3cd;
      color: #856404;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 600;
      font-style: normal;
      border: 1px solid #ffc107;
      margin-left: 8px;
      vertical-align: middle;
  }

  /* Alternative: Blue "info" style */
  .badge-coming-soon.info {
      background: #e3f2fd;
      color: #1565c0;
      border: 1px solid #90caf9;
  }


  /* Alternative: Gray "disabled" style */
  .badge-coming-soon.gray {
      background: #f5f5f5;
      color: #666;
      border: 1px solid #ddd;
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
      #steps-container {
          padding: 16px;
      }

      #steps-container .wp-block-table table {
          border-spacing: 6px;
      }

      #steps-container .wp-block-table td {
          padding: 12px;
      }

      #steps-container > p {
          font-size: 16px;
          padding: 8px 14px;
      }
  }
