/* Container design mapped directly to match the site borders */
.SupportSection .support-outer-card {
  background-color: #ffe6cc !important; /* Authentic Indian Peach container fill */
  border: 2px solid #800000 !important;   /* Matches Maroon primary section frames */
  border-radius: 8px;
  overflow: hidden;
}

/* Structural sizing for decorative mail emoji envelope icon */
.SupportSection .support-icon-wrapper {
  font-size: 1.8rem;
  line-height: 1;
}

/* Primary text indicator branding */
.SupportSection .support-heading {
  color: #000080; /* Traditional Navy blue anchor tone */
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Descriptive help statement fonts configuration */
.SupportSection .support-subtext {
  color: #333333;
  font-size: 0.88rem;
  font-weight: bold;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* The interactive Email action link button layout */
.SupportSection .support-email-btn {
  background-color: #ff007f !important; /* Vivid Neon Pink core branding color */
  border: none !important;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 24px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(255, 0, 127, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Simple state management layout modifiers running purely without scripts */
.SupportSection .support-email-btn:hover,
.SupportSection .support-email-btn:focus {
  background-color: #cc0066 !important; /* Darkened deep rose option */
  transform: translateY(-1px);
}