.intro-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #2c2c2c;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #000;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: #2c2c2c;
}

.btn-ghost:hover {
  background: #f0f0f0;
  opacity: 1;
  transform: translateY(-1px);
}
