.selection-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.selection-card {
  background: #f9fafb;
  border: 2px solid #434951;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.selection-card:hover {
  border-color: #f15923;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.selection-card.softone {
  background: #fff7f4;
  border-color: #f15923;
}

.selection-card h2 {
  margin: 0 0 16px 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #434951;
}

.selection-card p {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 24px;
  color: #434951;
}

.selection-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #434951;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.selection-card a:hover {
  background: #f15923;
}

.selection-card.softone a {
  background: #f15923;
}

.selection-card.softone a:hover {
  background: #d63d16;
}

@media (max-width: 600px) {
  .selection-container {
    grid-template-columns: 1fr;
  }
}
