/* Privacy Policy Page Styles */

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  line-height: 1.8;
}

.privacy-container {
  width: 100%;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, hsl(214, 100%, 59%) 0%, hsl(268, 100%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-meta {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.privacy-meta p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0 0% 50% / 0.3), transparent);
  margin: 3rem 0;
}

/* TL;DR Section */
.tldr-section {
  background: linear-gradient(135deg, hsl(214, 100%, 59% / 0.1) 0%, hsl(268, 100%, 70% / 0.1) 100%);
  border-left: 4px solid hsl(214, 100%, 59%);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.tldr-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(214, 100%, 59%);
}

.tldr-section ul {
  list-style: none;
  padding-left: 0;
}

.tldr-section li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.tldr-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: hsl(214, 100%, 59%);
  font-weight: bold;
  font-size: 1.2rem;
}

.read-more {
  margin-top: 1.5rem;
  font-style: italic;
  opacity: 0.8;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: hsl(214, 100%, 59%);
}

.policy-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.policy-section ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.75rem;
}

.policy-section ul.no-list {
  list-style: none;
  padding-left: 0;
}

.policy-section ul.no-list li {
  padding-left: 1.5rem;
}

/* Service Provider Boxes */
.provider-box {
  background: hsl(0 0% 50% / 0.05);
  border: 1px solid hsl(0 0% 50% / 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.provider-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: hsl(214, 100%, 59%);
}

.provider-box > p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.provider-box ul {
  margin-bottom: 0;
}

.provider-box a {
  color: hsl(214, 100%, 59%);
  text-decoration: none;
  word-break: break-all;
}

.provider-box a:hover {
  text-decoration: underline;
}

/* AI Disclosure Section */
.ai-disclosure {
  background: linear-gradient(135deg, hsl(268, 100%, 70% / 0.05) 0%, hsl(214, 100%, 59% / 0.05) 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.ai-disclosure h2 {
  margin-top: 0;
}

.ai-step {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid hsl(268, 100%, 70%);
}

.ai-step h4 {
  margin-top: 0;
  color: hsl(268, 100%, 70%);
}

/* Privacy Footer */
.privacy-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0 0% 50% / 0.2);
  opacity: 0.7;
}

.privacy-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* Links */
.policy-section a {
  color: hsl(214, 100%, 59%);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

/* Dark Mode Support */
:root[data-theme="dark"] .tldr-section {
  background: linear-gradient(135deg, hsl(214, 100%, 59% / 0.15) 0%, hsl(268, 100%, 70% / 0.15) 100%);
}

:root[data-theme="dark"] .provider-box {
  background: hsl(0 0% 100% / 0.05);
  border-color: hsl(0 0% 100% / 0.1);
}

:root[data-theme="dark"] .ai-disclosure {
  background: linear-gradient(135deg, hsl(268, 100%, 70% / 0.1) 0%, hsl(214, 100%, 59% / 0.1) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-content {
    padding: 100px 24px 60px;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .policy-section h3 {
    font-size: 1.2rem;
  }

  .tldr-section,
  .provider-box,
  .ai-disclosure {
    padding: 1.5rem;
  }

  .policy-section ul {
    padding-left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 90px 20px 50px;
  }

  .privacy-title {
    font-size: 1.75rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .tldr-section,
  .provider-box,
  .ai-disclosure {
    padding: 1.25rem;
  }
}
