/* Page wrapper */
.useful-links-page {
  margin-top: 120px;   /* adjust if needed to match blog exactly */
  text-align: center;
}

/* Page title */
.useful-links-page h3 {
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
}

/* Links container */
.links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Individual links */
.links-container a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.links-container a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}
