.nss-card {
    background-color: #fdfdfd;
    border-left: 6px solid #084972;
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    line-height: 1.8;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .nss-card p {
    margin: 0;
    font-size: 1.1rem;
  }
  
  /* Responsive tweaks for smaller screens */
  @media (max-width: 768px) {
    .nss-card {
      padding: 16px 20px;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .nss-card {
      padding: 12px 16px;
      font-size: 0.95rem;
      border-left: 4px solid #084972;
    }
  }
  