.easyel-custom-code-page {
  font-family: "Inter", sans-serif;
  color: #1e293b;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 15px;
}

.easyel-banner {
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #fff;
  padding: 50px 40px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.easyel-banner h1 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.easyel-banner p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.easyel-upgrade-btn {
  background: #fff;
  color: #6d28d9;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.easyel-upgrade-btn:hover {
  background: #ede9fe;
  color: #4c1d95;
}

.easyel-features {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.easyel-features h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.easyel-feature-table {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}

.easyel-feature-table li {
  padding: 14px 16px;
  font-size: 15px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.easyel-feature-table li::before {
  content: "✔";
  color: #6d28d9;
  font-weight: 700;
  font-size: 14px;
}

.easyel-feature-table li:hover {
  background: #f9fafb;
}