@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fdf6e9;
  color: #2c2415;
  line-height: 1.75;
  padding: 32px;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.privacy-policy {
  max-width: 720px;
  margin: 64px auto;
  padding: 48px 24px 32px; /* ⬅️ more top padding */
  background: #fffdf8;
  border: 1px solid #e8dec9;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.privacy-policy img {
  width: 100px;
  margin: 0 auto 32px; /* ⬅️ gave more breathing room below Sam */
  display: block;
}

.privacy-policy h1 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 16px;
  color: #2c2415;
}

.privacy-policy h2 {
  font-size: 1.5rem;
  margin: 48px 0 12px;
  color: #327432;
  font-weight: 600;
}

.privacy-policy p {
  font-size: 1.0625rem;
  margin-bottom: 20px;
  color: #3a2e1c;
}

.privacy-policy ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.privacy-policy ul li {
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
}

/* Removes all pseudo content from list items */
.privacy-policy ul li::before {
  content: none;
}

.privacy-policy a {
  color: #2d6a2d;
  font-weight: 600;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.privacy-policy p:last-of-type {
  margin-top: 40px;
  text-align: center;
}

@media (min-width: 768px) {

  p {

    max-width: 500px;
    margin: auto;
  }

  .privacy-policy h1 {
    font-size: 2.5rem;
  }

  .privacy-policy h2 {
    font-size: 1.75rem;
  }

  .privacy-policy p {
    font-size: 1.125rem;
  }
}

#sam-hush {

    padding-top: 2rem;
}