

.privacy-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 60px; 
  min-height: 100vh;
}


.card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Typography */
h1, h2, h3, p, ul, li {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.6;
}

ul.bullets {
  padding-left: 20px;
  margin: 8px 0;
}

li.bullet {
  margin-bottom: 8px;
}

/* Contact card */
.contact-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(74,47,145,0.04), rgba(74,47,145,0.02));
  border: 1px solid rgba(74,47,145,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-left {
  min-width: 0;
}

.contact-title {
  font-weight: 600;
  margin: 0;
  color: #4a2f91;
}

.contact-list {
  margin: 6px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Buttons */
.contact-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: #4a2f91;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #ccc;
  color: #4a2f91;
}

/* Responsive */
@media (max-width: 720px) {
  .privacy-wrapper {
    padding: 100px 15px 40px;
  }

  .card {
    padding: 20px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }
}

/* Print */
@media print {
  body {
    background: white;
  }

  .card {
    box-shadow: none;
    border: none;
  }

  .contact-actions, header .brand {
    display: none;
  }
}
