    .process-section {
      padding: 30px 60px;
      background: linear-gradient(to bottom, var(--blue-dark),var(--dark-light),var(--dark-light));
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: white;
    }

    .process-container {
      max-width: 700px;
      margin: 0 auto;
    }

    .process-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .process-header h2 {
      font-size: 28px;
      margin: 0;
      background: linear-gradient(90deg, #fff, #ccc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Stepper */
    .process-stepper {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 20px;
    }

    .process-stepper::before {
      content: '';
      position: absolute;
      top: 12.5px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--white);
      z-index: 1;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
    }

    .step-icon {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: white;
      margin-bottom: 5px;
      transition: all 0.3s ease;
    }

    .step.completed .step-icon {
      background: #FF0000 !important;
      color: #ffffff;
    }

    .step.active .step-icon {
      box-shadow: 0 0 0 4px var(--blue-light);
    }

    .step-label {
      font-size: 14px;
      text-align: center;
      max-width: 200px;
      opacity: 0.7;
    }

    .step.active .step-label,
    .step.completed .step-label {
      opacity: 1;
      font-weight: 600;
    }

    /* Card */
    .process-card {
      background: var(--dark-light);
      padding: 30px;
      border-radius: 13px;
      box-shadow: 0 10px 30px rgba(10, 100, 200, 1.5);
    }

    .step-badge {
      display: inline-block;
      background: rgba(0, 255, 157, 0.2);
      color: #00ff9d;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      margin-bottom: 12px;
    }

    .process-card h3 {
      font-size: 20px;
      margin: 0 0 5px;
    }

    .process-card p {
      opacity: 0.85;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .activities ul {
      padding-left: 20px;
      margin: 5px 0;
      font-size: 12;
    }

    .activities li {
      margin-bottom: 5px;
      opacity: 0.9;
    }

    /* Progress */
    .progress-bar-container {
      margin: 0px 0;
      text-align: center;
    }

    .progress-label {
      font-size: 6px;
      opacity: 0.7;
      margin-bottom: 0px;
    }

    .progress-bar {
      height: 6px;
      background: rgba(255,255,255,0.1);
      border-radius: 4px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #8a2be2, var(--blue-light));
      width: 20%;
      transition: width 0.5s ease;
    }

    .progress-percent {
      font-size: 20px;
      font-weight: bold;
      margin-top: 5px;
    }
    .btn{
           padding: 12px 24px;
      border: none;
      border-radius: 28px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
      flex: 1; 
    }
    
    /* Buttons */
    .process-buttons {
      display: flex;
      gap: 12px;
      margin-top: 5px;
    }

    .btn-next {
      background: linear-gradient(to bottom, var(--blu),var(--blue-dark));
      color: white;
    }

    .btn-next:hover {
      background:  var(--blu);
    }

    .btn-reset {
      background: #ff4d4d;
      color: white;
      display: none;
    }

    .btn-reset:hover {
      background: #ff1a1a;
    }

    @media (max-width: 480px) {
    .process-section {
      padding: 20px 20px;
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: white;
    }

    .process-container {
      max-width: 700px;
      margin: 0 auto;
    }

    .process-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .process-header h2 {
      font-size: 18px;
      margin: 0;
      background: linear-gradient(90deg, #fff, #ccc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Stepper */
    .process-stepper {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 20px;
    }

    .process-stepper::before {
      content: '';
      position: absolute;
      top: 12.5px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--white);
      z-index: 1;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
    }

    .step-icon {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: white;
      margin-bottom: 5px;
      transition: all 0.3s ease;
    }

    .step.completed .step-icon {
      color: #ffffff;
    }

    .step.active .step-icon {
      box-shadow: 0 0 0 4px var(--blue-light);
    }

    .step-label {
      font-size: 7px;
      text-align: center;
      max-width: 200px;
      opacity: 0.7;
    }

    .progress-label {
      font-size: 0px;
      opacity: 0.7;
      margin-bottom: 0px;
    }
    
      .process-buttons {
        flex-direction: column;
      }
    }

