.bluebtn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background-color: #1597c9; /* Your site blue */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px; /* rounded pill shape */
  border: none;
  cursor: pointer;

  /* polish */
  letter-spacing: 0.3px;
  font-size: 1rem;

  /* subtle shadow */
  box-shadow: 0 4px 10px rgba(22, 28, 36, 0.25);

  /* animation */
  transition: background-color 0.25s ease, 
              transform 0.15s ease,
              box-shadow 0.25s ease;
}

.bluebtn:hover,
.bluebtn:focus {
  background-color: #117eaa; /* darker shade of your blue */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(22, 28, 36, 0.35);
}

.bluebtn:active {
  background-color: #0f7295; /* deeper pressed shade */
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(22, 28, 36, 0.25);
}
@media (max-width: 699px) {#nwLogo {width: 200px;}}