/* Privacy Page Styling to match main site */
body {
  font-family: 'Chakra Petch', sans-serif !important;
  background-color: #FDF6E9 !important;
  color: #1a1a1a !important;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* Header */
.privacy-header {
  background-color: #FDF6E9;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-decoration: none;
}

.back-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background-color: #1a1a1a;
  color: #FDF6E9;
}

/* Content Container */
.privacy-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Override existing styles */
[data-custom-class='body'],
[data-custom-class='body'] * {
  background: transparent !important;
  font-family: 'Chakra Petch', sans-serif !important;
}

[data-custom-class='title'],
[data-custom-class='title'] * {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 36px !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
  font-family: 'Chakra Petch', sans-serif !important;
  color: #666 !important;
  font-size: 16px !important;
}

[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 24px !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
}

[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 20px !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  margin-top: 25px !important;
  margin-bottom: 10px !important;
}

[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
  color: #1a1a1a !important;
  font-size: 15px !important;
  font-family: 'Chakra Petch', sans-serif !important;
  line-height: 1.8 !important;
}

[data-custom-class='link'],
[data-custom-class='link'] * {
  color: #1a1a1a !important;
  font-size: 15px !important;
  font-family: 'Chakra Petch', sans-serif !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* Lists */
ul, ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Links */
a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 600;
}

a:hover {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    height: 40px;
  }

  .logo-text {
    font-size: 20px;
  }

  .privacy-content {
    margin: 20px;
    padding: 40px 25px;
  }

  [data-custom-class='title'],
  [data-custom-class='title'] * {
    font-size: 28px !important;
  }

  [data-custom-class='heading_1'],
  [data-custom-class='heading_1'] * {
    font-size: 20px !important;
  }

  [data-custom-class='heading_2'],
  [data-custom-class='heading_2'] * {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    margin: 10px;
    padding: 30px 20px;
  }

  .logo {
    height: 32px;
  }

  .logo-text {
    font-size: 16px;
  }
}
