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

a {
  color: inherit;
}

.site-header,
.privacy-page {
  width: min(980px, 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 {
  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);
}

.privacy-page {
  padding: 42px 0 76px;
}

.privacy-hero {
  margin-bottom: 36px;
}

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

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

.privacy-hero p,
.privacy-section p,
.privacy-section li {
  color: #536b60;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
}

.privacy-hero p {
  max-width: 720px;
}

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

.privacy-section + .privacy-section {
  border-top: 1px solid #e7efeb;
  margin-top: 28px;
  padding-top: 28px;
}

.privacy-section h2 {
  color: #132d20;
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.privacy-section ul {
  padding-left: 20px;
}

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

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

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

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

  .privacy-content {
    padding: 22px;
  }
}
