.no-link-style {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero Section */
.support-hero {
  background: linear-gradient(135deg, #0f1923, #0d1117);
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1rem 1rem; /* Added padding-top so nav doesn't overlap */
}

.support-hero h1 {
  font-size: 3rem;
  color: #5cc9ff;
  margin-bottom: 0.5rem;
}

.support-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Support Cards */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.support-card {
  background: #11151d;
  padding: 2rem;
  border-radius: 10px;
  color: #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.support-card h2 {
  color: #5cc9ff;
  margin-bottom: 0.5rem;
}

.support-card p {
  margin-bottom: 1rem;
  flex: 1;
}

/* White text for primary buttons */
.white-text {
  color: #fff !important;
}

/* Link styling */
.support-card a,
.faq a {
  color: #5cc9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-card a:hover,
.faq a:hover {
  color: #fff;
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  margin-top: 3rem;
  text-align: left;
}

.faq h3 {
  color: #5cc9ff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq p {
  color: #ccc;
  margin-bottom: 1rem;
}
