/* PAGE HEADER */
.page-header {
  background: #000;
  padding-top: 120px;
  padding-bottom: 0 !important;
}

.breadcrumb a {
  color: #15C79A;
  transition: .25s ease;
}

.breadcrumb a:hover {
  color: #3BE3B8;          /* brighter mint highlight */
  text-decoration: none;
  transform: translateX(2px);
}

.breadcrumb li.is-active a {
  color: white;
}

.page-title {
  color: white;
  margin-top: 10px;
}

.page-subtitle {
  color: #a9b3b5;
  max-width: 720px;
}

/* CONTENT SECTION */
.page-content {
  background: #0a0a0a;
}

.content-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 18px;
}

.content-heading {
  color: white;
}

.page-content p {
  color: #c6d0d1;
}

/* MAIN PAGE BLOCK */
.content-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(6px);
}

/* Headings */
.content-block .content-heading {
  color: white;
  margin-bottom: 10px;
  margin-top: 28px;
}

.content-block p {
  color: #cbd5d6;
}

.content-block ul {
  margin-left: 20px;
  color: #cbd5d6;
}

/* Divider */
.content-block hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin: 28px 0;
}

/* Mobile */
@media(max-width: 900px){
  .content-block {
    padding: 22px;
  }
}

 strong{
  color: white;
}

label{
  color: white !important;
}

/* ----------------------------------
   DARK THEME LISTS
---------------------------------- */
.page-content ul {
  margin: 18px 0 24px 0;
  padding-left: 1.6rem;
  list-style: none;               /* remove default bullets */
}

.page-content ul li {
  position: relative;
  color: #cfd6db;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 20px;
}

/* Custom subtle emerald bullet */
.page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(145deg, #15c79a, #0ba67e);
  box-shadow: 0 0 10px rgba(21,199,154,.45);
}

/* Optional hover enhancement */
.page-content ul li:hover {
  color: #ffffff;
}