.SupportSection.card_style {
  background-color: #fbe7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Primary text indicator branding */
.SupportSection .support-heading {
  color: #000;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
}

/* The interactive Email action link button layout */
.SupportSection .support-email-btn {
  background: radial-gradient(#ffe500, #ff9800);
  color: #000;
  padding: 1px 10px;
  border-radius: 80px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  border: 1px solid #ff0016;
  text-shadow: 1px 1px 2px #fff;
  font-size: 18px;
  font-weight: 800;
}

/* Simple state management layout modifiers running purely without scripts */
.SupportSection .support-email-btn:hover,
.SupportSection .support-email-btn:focus {
  background: radial-gradient(
    #ffe500,
    #ff9800
  ) !important; /* Darkened deep rose option */
}
@media (min-width:0px) and (max-width:767px){
.SupportSection .support-heading {
    font-size: 9px;
}

.SupportSection .support-email-btn {
    font-size: 10px;
}
}