/* Privacy page */
.privacy-hero {
  padding: 65px 0 55px;
  border-bottom: 1px solid var(--border);
  background: var(--background-soft);
}

.privacy-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.privacy-hero p:last-child {
  color: var(--text-muted);
}

.privacy-content {
  max-width: 760px;
  padding-top: 60px;
  padding-bottom: 75px;
}

.privacy-content > p:first-child {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 16px);
  background: var(--background-soft);
}

.privacy-content h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.privacy-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.privacy-content a {
  color: var(--green);
  font-weight: 600;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-choice-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--surface);
  color: var(--green);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.privacy-choice-button:hover,
.privacy-choice-button:focus-visible {
  background: #effaf2;
}

@media (max-width: 750px) {
  .privacy-hero {
    padding: 50px 0 42px;
  }

  .privacy-content {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}
