/* Privacy page styling */
.privacy-hero {
  /* background: #FEF6E1;
  background: linear-gradient(178deg, rgba(254, 246, 225, 1) 0%, rgba(255, 255, 255, 1) 35%);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(16px, 4vw, 40px) clamp(4rem, 8vw, 6.5rem);
  box-sizing: border-box; */
  --contact-accent: #34a853;
  --contact-accent-hover: #2d9249;
  --contact-accent-soft: rgba(52, 168, 83, 0.12);
  --contact-accent-ring: rgba(52, 168, 83, 0.22);
  --contact-input-radius: 12px;
  --contact-cream-border: #F2F5F8;
  background: #FEF4DC;
  background: linear-gradient(180deg, rgba(254, 244, 220, 1) 0%, rgba(255, 255, 255, 1) 7%);
  padding: 80px 120px 17px;
  box-sizing: border-box;
}

.privacy-hero__inner {
  /* max-width: 1240px; */
  margin-inline: auto;
  box-sizing: border-box;
}

.privacy-card {
  /* background: #ffffff;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  color: #1e293b;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.04),
    0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid #f1f5f9; */
}

h1.privacy-hero__title {
  width: 100%;
  text-align: left;
}

.privacy-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #181B25;
  margin: 0 0 2rem;
  display: inline-block;
}

.privacy-content {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: #334155;
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 500;
  color: #181B25;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: #181B25;
  margin: 1.75rem 0 0.75rem;
}

.privacy-content p {
  margin: 0 0 1.25rem;
}

.privacy-content ul {
  list-style-type: none;
  padding-inline-start: 0;
  margin: 0 0 1.5rem;
}

.privacy-content ul li {
  position: relative;
  padding-inline-start: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.privacy-content ul li::before {
  content: "\2022";
  color: #181B25;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  transform: translateY(-50%);
}

.privacy-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 2.5rem 0 0;
  padding: 0;
  border: none;
  background-color: #E1E4EA;
}

.privacy-content a {
  color: #181B25;
  font-weight: 300;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.privacy-content a:hover {
  color: #219a52;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 80px 40px 88px;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 32px 23px;
  }

  .privacy-card {
    padding: 1.5rem 0rem;
    border-radius: 16px;
  }
}