* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b2d4d;
  background: #ffffff;
}

.nsd-page {
  width: 100%;
}

.nsd-container {
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nsd-intro {
  padding: 64px 0 40px;
  text-align: center;
}

.nsd-eyebrow {
  display: none;
}

.nsd-intro h1 {
  display: none;
}

.nsd-intro__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 400;
  color: #0b2d4d;
}

.nsd-codewrap {
  width: 100%;
  padding: 16px 0 80px;
}

.nsd-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.nsd-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.nsd-card {
  background: #ffffff;
  border: 1px solid #dfe6ea;
  border-radius: 14px;
  overflow: visible;
  display: flex;
  height: 100%;
}

.nsd-card__body {
  min-height: 310px;
  width: 100%;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
}

.nsd-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #eef7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nsd-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nsd-card__title {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #0b2d4d;
}

.nsd-card__text {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4f6780;
}

.nsd-outline-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #0b2d4d;
  border-radius: 3px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0b2d4d;
  background: transparent;
}

.nsd-outline-btn:hover {
  background: #0b2d4d;
  color: #ffffff;
}

@media screen and (max-width: 900px) {
  .nsd-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .nsd-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nsd-intro {
    padding: 48px 0 28px;
  }

  .nsd-intro__text {
    font-size: 1.15rem;
  }

  .nsd-grid--3 {
    grid-template-columns: 1fr;
  }

  .nsd-card__body {
    min-height: auto;
  }
}
