body {
  margin: 0;
  font-family: 'inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

* {
  font-family: 'inter', sans-serif;
}

/* Hero Section */
.privacy-hero {
  background: linear-gradient(90deg, #a855f7, #9333ea);
  padding: 40px 20px;
  text-align: center;
  color: white;
  font-size: 16px;
  /* height: 306px; */
}

.privacy-hero h1 {
  font-size: 48px;
  padding-top: 80px;
  font-weight: 700;
}

/* Content Section */
.privacy-api-content-section {
  padding: 40px 0 40px 0;
  background-color: #f1f1f1;
  /* Soft off-white background */
}

.privacy-api-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px 60px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  border: 1px solid #f3f4f6;
  font-family: 'Inter', sans-serif;
  color: #4b5563;
  /* Soft charcoal for premium readability */
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

/* Ensure all child elements loaded from CMS API respect container width and wrap text */
.privacy-api-content * {
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  box-sizing: border-box !important;
  white-space: normal !important;
}

/* Headings inside API content */
.privacy-api-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  /* Rich dark charcoal */
  margin-top: 40px;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.privacy-api-content h3 strong {
  font-weight: 700;
  color: #111827;
}

/* Add a elegant dividing line between sections, except before the first one */
.privacy-api-content h3:not(:first-of-type) {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

/* Paragraphs styling */
.privacy-api-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

/* Unordered Lists */
.privacy-api-content ul {
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 28px;
  list-style-type: none;
  /* Custom bullet points */
}

/* List items with elegant custom brand-purple bullets */
.privacy-api-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.privacy-api-content li::before {
  content: "•";
  color: #a855f7;
  /* Brand purple */
  font-size: 24px;
  position: absolute;
  left: 8px;
  top: -3px;
  line-height: 1;
}

/* Inline emphasis styling */
.privacy-api-content strong {
  font-weight: 600;
  color: #111827;
}

/* Link elements inside API content */
.privacy-api-content a {
  color: #a855f7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-api-content a:hover {
  color: #9333ea;
  text-decoration: underline;
}

/* Backwards compatibility for old container */
.privacy-container {
  max-width: 900px;
  margin: 62px auto 100px auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .privacy-api-content-section {
    padding: 40px 15px 60px 15px;
  }

  .privacy-api-content {
    padding: 35px 25px;
    border-radius: 18px;
  }

  .privacy-api-content h3 {
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 14px;
  }

  .privacy-api-content h3:not(:first-of-type) {
    margin-top: 36px;
    padding-top: 18px;
  }

  .privacy-api-content p,
  .privacy-api-content li {
    font-size: 15px;
    line-height: 1.7;
  }
}