body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
  background: #ffffff;
  color: #111827;
}

.support-section {
  padding: 80px 20px;
}

.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-header h2 {
  font-size: 32px;
  font-weight: 800;
}

.support-header p {
  color: #6b7280;
  margin-top: 10px;
}

.support-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.support-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform .3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
}

.support-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.support-card p {
  color: #4b5563;
  line-height: 1.6;
}

.support-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .support-header h2 {
    font-size: 26px;
  }
}
