/**
 * Get Help Page Styles
 * Two full-card links, no buttons, no pop-ups
 */

.help-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.help-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.help-option:hover {
  box-shadow: 0 12px 40px rgba(0, 155, 77, 0.1);
  border-color: rgba(0, 155, 77, 0.2);
  transform: translateY(-3px);
}

.help-option-icon {
  font-size: 2.5rem;
  color: #009B4D;
  margin-bottom: 1rem;
}

.help-option-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.help-option-summary {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.help-option-cta {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color, #009B4D);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.help-option:hover .help-option-cta {
  gap: 0.75rem;
}

.help-option-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.help-option:hover .help-option-cta i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .help-options {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .help-option {
    padding: 1.75rem 1.25rem;
  }
}
