
/* CARD */
.nss-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.nss-header h1 {
  color: var(--primary-blue);
  font-weight: 700;
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto 30px;
}

/* INTRO */
.intro {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SUB TITLE */
.sub-title {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

.sub-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin-top: 6px;
}

/* LIST */
.nss-list {
  padding: 0;
}

.nss-list li {
  list-style: none;
  background: #f9fafc;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  transition: 0.3s;
  position: relative;
}

/* DOT */
.nss-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  position: absolute;
  left: -4px;
  top: 18px;
}

/* HOVER */
.nss-list li:hover {
  background: #eef2ff;
  transform: translateX(6px);
}

/* RIGHT CARD */
.nss-info-card {
  background: linear-gradient(135deg, var(--primary-blue), #1c2a6d);
  color: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: sticky;
  top: 20px;
}

.nss-info-card h3 {
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-red);
  display: inline-block;
  padding-bottom: 5px;
}

.nss-info-card p {
  margin: 0;
  line-height: 1.8;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .nss-card {
    padding: 20px;
  }

  .nss-header h1 {
    font-size: 22px;
  }

  .nss-info-card {
    margin-top: 20px;
    position: relative;
  }
}