/* Stack Card Styles for Contact Page */
.stack-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
  margin-bottom: 2rem;
}

.stack-card:hover {
  transform: translateY(-8px);
}

.stack-card .icon {
  margin-bottom: 1.5rem;
}

.stack-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.stack-card p {
  color: #555;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}
