.useful-links {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.useful-links h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.useful-links .intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.link-card {
  background: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.link-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.link-card a {
  color: #0073aa;
  text-decoration: none;
}

.link-card a:hover {
  text-decoration: underline;
}

.link-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}
