.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; /* more breathing space between cards */
  margin-top: 2rem;
}

.specialty-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 220px; /* taller for bullets */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* align content to top */
  text-align: left; /* left align for bullets */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.specialty-card h3 {
  color: #0073e6;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.specialty-card .bullets {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin: 0;
}

.specialty-card .bullets li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
