@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400..900&family=Poppins:wght@700&display=swap');
/* Privacy / Legal page styling */
body {
    background: #f3e6e6;
    color: black;
}

.legal-actions {
  text-align: left;
  margin-top: 2.5rem;
}

.legal-back-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  background: #b78fb2; /* soft Sweet Pea tone */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.legal-back-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: black;
}

.legal-page {
  background: #f3e6e6;          /* soft blush like the site */
}

.legal-page .container {
  max-width: 960px;
  margin: 0 auto;
}

.legal-page h1 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 0 0 0.75rem 0;
  font-family: "PLayfair Display", serif;  
}

.legal-page p {
  line-height: 1.7;
  font-family: "Lato", sans-serif;
}

.legal-page h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  font-family: "PLayfair Display", serif;  
}

.legal-page ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem 0;
}

.legal-page a {
  text-decoration: underline;
  font-family: "Lato", sans-serif;
}

.legal-page a:hover {
  text-decoration: none;
  font-family: "Lato", sans-serif;
}

/* Optional: make the co*
