/* Shared feature list styling across all packages */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Was mostly 8px, but up to 12px in some designs. 8px chosen based on recent Corporate/CCTV adjustments */
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #030303;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .feature-list {
    gap: 6px;
  }

  .feature-list li {
    gap: 8.4px;
    font-size: 8.5px;
  }

  .check-icon {
    width: 8px;
    height: 8px;
  }
}
.sub-title-note {
  font-size: 12px;
  color: #030303;

  margin-top: 20px;
  margin-bottom: 4px;
  text-align: center;
}

@media (max-width: 768px) {
  .sub-title-note {
    font-size: 7px;
    margin-top: 10px;
    text-align: center;
  }
}
