.help-card {
  background-color: #f8f9fa;

  color: #333;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.help-card .btn-light {
  color: #000;
  font-weight: 500;
}


.help-card {
  background-color: #f8f9fa;
  color: #333;
  border-left: 5px solid #ccc;

  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding-left: 1.5rem;
}


.card-user-account {
  border-left-color: #0d6efd;
  /* Blue */
}

.card-payment {
  border-left-color: #28a745;
  /* Green */
}

.card-email {
  border-left-color: #ffc107;
  /* Yellow */
}

.card-order {
  border-left-color: #17a2b8;
  /* Teal */
}


.ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 0;
}


.image-preview img {
  margin-top: 5px;
  max-height: 120px;
  border-radius: 4px;
}



.help-banner {
  background: linear-gradient(to right, #f0f4ff, #e8f1ff);

  border-bottom: 1px solid #dee2e6;
}


    body {
      background: linear-gradient(to right, #fdfbfb, #ebedee);
      font-family: 'Segoe UI', sans-serif;
      color: #333;
    }

    .back-btn {
      border: none;
      background: #e2e6ea;
      color: #212529;
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .back-btn:hover {
      background: #ced4da;
      color: #000;
    }

    .page-title {
      font-size: 2rem;
      font-weight: 600;
      color: #212529;
    }

    .page-subtitle {
      font-size: 1.1rem;
      color: #6c757d;
      margin-bottom: 2rem;
    }

    .card-custom {
      background-color: #fff;
      border: none;
      border-radius: 16px;
      padding: 24px;
      box-shadow: -6px 0 30px rgba(13, 110, 253, 0.3);
      /* Left glow in Bootstrap primary blue */
      transition: all 0.3s ease-in-out;
    }

    .card-custom:hover {
      transform: translateY(-4px);
      box-shadow: -8px 0 36px rgba(13, 110, 253, 0.5);
      /* Stronger glow on hover */
    }




    .icon-circle {
      width: 56px;
      height: 56px;
      background: linear-gradient(to right, #0d6efd, #6610f2);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 22px;
      flex-shrink: 0;
    }

    .card-text h6 {
      font-size: 0.8rem;
      text-transform: uppercase;
      color: #adb5bd;
      margin-bottom: 4px;
    }

    .card-text h5 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0;
      color: #212529;
    }

    .footer {
      padding: 30px 0;
      text-align: center;
      font-size: 0.9rem;
      color: #6c757d;
      border-top: 1px solid #dee2e6;
      margin-top: 80px;
    }

