#app {
  min-height: 100vh;
  background: #f6f8f7;
  color: #102018;
  font-family: "Inter", "Roboto", sans-serif;
}

a {
  color: inherit;
}

.site-header,
.support-page {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link,
.site-nav,
.support-action {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 10px;
  color: var(--excel-green-darkest);
  text-decoration: none;
  font-weight: 800;
}

.brand-link .fa {
  color: var(--excel-green-medium);
  font-size: 1.6rem;
}

.site-nav {
  gap: 18px;
  color: #466155;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--excel-green-dark);
}

.support-page {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 56px;
  align-items: center;
  padding: 42px 0 76px;
}

.support-copy {
  max-width: 690px;
}

.eyebrow {
  color: var(--excel-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.support-copy h1 {
  max-width: 12ch;
  color: #0c1f16;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 24px;
}

.support-copy p,
.support-card p {
  color: #536b60;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.support-copy p {
  max-width: 590px;
}

.support-card {
  background: #ffffff;
  border: 1px solid #dce8e2;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(12, 46, 28, 0.11);
}

.support-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f7ef;
  border-radius: 8px;
  color: var(--excel-green-dark);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.support-card h2 {
  color: #132d20;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.support-action {
  min-height: 48px;
  justify-content: center;
  gap: 10px;
  background: var(--excel-green-color);
  border: 2px solid var(--excel-green-color);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
  margin-top: 24px;
  padding: 0 18px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8, 127, 65, 0.22);
}

.support-action:hover {
  background: var(--excel-green-dark);
  border-color: var(--excel-green-dark);
}

.support-email {
  margin-top: 18px;
}

.support-email span {
  display: block;
  color: #6d8278;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.support-email a {
  color: var(--excel-green-dark);
  font-weight: 800;
}

@media (max-width: 820px) {
  .support-page {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    padding-top: 32px;
  }

  .support-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .site-header,
  .support-page {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .support-card {
    padding: 22px;
  }
}
