.rc-wrapper {
      max-width: 840px;
      margin: 2.5rem auto;
      padding: 0 1rem;
    }

    /* PRINT HEADER (site + QR) */
    .rc-print-header {
      display: none;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #d1d5db;
    }

    .rc-print-header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .rc-print-sitename {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .rc-print-url {
      font-size: 0.85rem;
      word-break: break-all;
    }

    .rc-print-qr img {
      width: 100px;
      height: 100px;
    }

    /* Toolbar (screen only) */
    .rc-toolbar {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 0.6rem;
    }

    .rc-print-btn {
      border: none;
      border-radius: 999px;
      padding: 0.45rem 1rem;
      font-size: 0.9rem;
      cursor: pointer;
      background: #4f46e5;
      color: #ffffff;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      box-shadow: 0 3px 8px rgba(79, 70, 229, 0.4);
      transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
    }
	.rc-print-btn span{
		color: #ffffff;
	}

    .rc-print-btn:hover {
      background: #4338ca;
      transform: translateY(-1px);
      box-shadow: 0 5px 14px rgba(79, 70, 229, 0.45);
    }

    .rc-print-icon {
      font-size: 1rem;
    }

    /* Card */
    .rc-card {
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
      padding: 1.75rem;
    }

    .rc-title {
      margin: 0 0 0.4rem;
      font-size: 1.8rem;
      text-align: center;
    }

    .rc-desc {
      margin: 0 0 1.1rem;
      color: #4b5563;
      font-size: 0.97rem;
      text-align: center;
    }

    /* Icon row */
    .rc-icons {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 1.8rem;
    }

    .rc-icon-box {
      background: #f9fafb;
      border-radius: 16px;
      padding: 0.6rem 0.9rem;
      min-width: 120px;
      text-align: center;
      font-size: 0.9rem;
      color: #374151;
    }

    /* Sections */
    .rc-section {
      margin-bottom: 2rem;
    }

    .rc-subtitle {
      margin-bottom: 0.75rem;
      font-size: 1.2rem;
      font-weight: 600;
      border-left: 5px solid #4f46e5;
      padding-left: 0.6rem;
    }

    .rc-list {
      padding-left: 1.2rem;
      font-size: 0.95rem;
      color: #374151;
    }

    .rc-list li {
      margin-bottom: 0.45rem;
    }

    /* Steps timeline */
    .rc-steps {
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: step;
      position: relative;
    }

    .rc-steps::before {
      content: "";
      position: absolute;
      left: 0.75rem;
      top: 0.2rem;
      bottom: 0.2rem;
      width: 2px;
      background: linear-gradient(to bottom, #4f46e5, #e5e7eb);
    }

    .rc-steps li {
      position: relative;
      padding-left: 2.2rem;
      margin-bottom: 0.85rem;
      font-size: 0.95rem;
      color: #374151;
	  text-indent: unset;
    }

    .rc-steps li::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0.1rem;
      width: 1.4rem;
      height: 1.4rem;
      border-radius: 50%;
      background: #4f46e5;
      color: #fff;
      text-align: center;
      line-height: 1.4rem;
      font-size: 0.8rem;
      font-weight: 600;
    }

    @media (max-width: 600px) {
      .rc-card {
        padding: 1.3rem;
      }
    }

    /* PRINT STYLES + WATERMARK */
 
		
	@media print {
    /* Hide the entire body and make the printable element visible */
    body * {
        display: none; /* Hides all elements */
    }

    /* Make the specific element and its children visible */
    #printable-area, #printable-area * {
        display: block;
    }

    /* Position the printable element at the top left of the page */
    
}
  


