

 /* Container (controls readability like a real document) */
#privacyContainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* Heading */
#privacyContainer h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* List base */
#privacyList {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* override parent centering */
}

/* Each item */
#privacyList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee; /* subtle divider */
}

/* Remove last divider */
#privacyList li:last-child {
  border-bottom: none;
}

/* Icon circle */
#privacyList .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2c3e50;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 3px;
  transition: all 0.2s ease;
}

/* Hover effect (subtle fintech feel) */
#privacyList li:hover .icon {
  background-color: #1abc9c;
  transform: scale(1.05);
}

/* Text */
#privacyList li p {
  margin: 0;
  flex: 1;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
}

/*  Mobile optimization */
@media (max-width: 600px) {
  #privacyContainer {
    padding: 16px 12px;
  }

  #privacyList li {
    gap: 8px;
    margin-bottom: 12px;
  }

  #privacyList .icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  #privacyList li p {
    text-align: left; /*  better readability on small screens */
    line-height: 1.5;
  }
}