/* Privacy Policy Page Styles */

.privacy-policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.privacy-policy-content {
  width: 100%;
}

.privacy-policy-article {
  background: #fff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Intro Section */
.privacy-policy__intro {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e5e5;
}

.privacy-policy__intro .last-updated {
  font-size: 0.9375rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Content Section */
.privacy-policy__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.privacy-policy__content h2 {
  font-size: 1.875rem;
  color: var(--heading, #010d4c);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  padding-top: 1rem;
}

.privacy-policy__content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.privacy-policy__content h3 {
  font-size: 1.5rem;
  color: var(--heading, #010d4c);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.privacy-policy__content h4 {
  font-size: 1.25rem;
  color: var(--heading, #010d4c);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.privacy-policy__content p {
  margin-bottom: 1.25rem;
}

.privacy-policy__content ul,
.privacy-policy__content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy-policy__content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.privacy-policy__content ul li {
  list-style-type: disc;
}

.privacy-policy__content ol li {
  list-style-type: decimal;
}

.privacy-policy__content a {
  color: var(--purple, #7C3AED);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.privacy-policy__content a:hover {
  color: var(--purple-600, #6D28D9);
  border-bottom-color: var(--purple-600, #6D28D9);
}

.privacy-policy__content strong {
  font-weight: 600;
  color: var(--heading, #010d4c);
}

.privacy-policy__content em {
  font-style: italic;
}

/* Blockquote styling */
.privacy-policy__content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid var(--purple, #7C3AED);
  font-style: italic;
  color: #555;
}

.privacy-policy__content blockquote p:last-child {
  margin-bottom: 0;
}

/* Code blocks */
.privacy-policy__content code {
  padding: 0.2rem 0.4rem;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  color: #c7254e;
}

.privacy-policy__content pre {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.privacy-policy__content pre code {
  padding: 0;
  background: transparent;
  border: none;
  color: inherit;
}

/* Tables */
.privacy-policy__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.privacy-policy__content table th,
.privacy-policy__content table td {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.privacy-policy__content table th {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--heading, #010d4c);
}

.privacy-policy__content table tr:nth-child(even) {
  background: #fafafa;
}

/* Footer Section */
.privacy-policy__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.privacy-tags .tags-label {
  font-weight: 600;
  color: var(--heading, #010d4c);
  margin-right: 0.5rem;
}

.privacy-tags a {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #f0f0f0;
  color: #555;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.privacy-tags a:hover {
  background: var(--purple, #7C3AED);
  color: #fff;
}

/* Contact Section */
.privacy-policy__contact {
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--purple, #7C3AED);
}

.privacy-policy__contact h3 {
  font-size: 1.25rem;
  color: var(--heading, #010d4c);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.privacy-policy__contact p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.privacy-policy__contact a {
  color: var(--purple, #7C3AED);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.privacy-policy__contact a:hover {
  border-bottom-color: var(--purple, #7C3AED);
}

/* Page Links (pagination) */
.page-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
  font-weight: 500;
}

.page-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--purple, #7C3AED);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 0.5rem;
  transition: background 0.2s ease;
}

.page-links a:hover {
  background: var(--purple-600, #6D28D9);
}

.page-links > span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f0f0f0;
  border-radius: 6px;
  margin-right: 0.5rem;
}

/* Responsive Design */

@media (max-width: 768px) {
  .privacy-policy-container {
    padding: 2rem 1rem 3rem;
  }

  .privacy-policy-article {
    padding: 2rem 1.5rem;
  }

  .privacy-policy__content h2 {
    font-size: 1.5rem;
  }

  .privacy-policy__content h3 {
    font-size: 1.25rem;
  }

  .privacy-policy__content h4 {
    font-size: 1.125rem;
  }

  .privacy-policy__content table {
    font-size: 0.875rem;
  }

  .privacy-policy__content table th,
  .privacy-policy__content table td {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy-article {
    padding: 1.5rem 1rem;
  }

  .privacy-policy__content {
    font-size: 0.9375rem;
  }

  .privacy-policy__content h2 {
    font-size: 1.375rem;
    margin-top: 2rem;
  }

  .privacy-policy__content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }

  .privacy-policy__content ul,
  .privacy-policy__content ol {
    padding-left: 1.5rem;
  }

  .privacy-policy__contact {
    padding: 1.5rem;
  }
}

