/* ══════════════════════════════
     PRIVACY & TERMS STYLING
   ══════════════════════════════ */

:root {
  --privacy-bg: #f8fafc;
  --privacy-card-bg: #ffffff;
  --privacy-primary: #1565C0;
  --privacy-text: #334155;
  --privacy-text-light: #64748b;
  --privacy-accent: #e2e8f0;
  --privacy-border: #e2e8f0;
  --privacy-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.privacy.section {
  background-color: var(--privacy-bg);
  padding: 80px 0;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--privacy-text);
  line-height: 1.6;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--privacy-primary);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.privacy-header .intro-text {
  font-size: 1.25rem;
  color: var(--privacy-text-light);
  line-height: 1.7;
}

.privacy-content, .tos-content {
  background: var(--privacy-card-bg);
  border-radius: 24px;
  padding: 60px;
  box-shadow: var(--privacy-shadow);
  max-width: 1000px;
  margin: 0 auto 40px;
  border: 1px solid var(--privacy-border);
}

.content-section {
  margin-bottom: 40px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2, .content-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--privacy-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-section h2::before, .content-section h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--privacy-primary);
  border-radius: 2px;
}

.content-section p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--privacy-text);
}

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

.content-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--privacy-text);
}

.content-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--privacy-primary);
  font-weight: bold;
}

.privacy-contact, .tos-contact {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  border-radius: 24px;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.privacy-contact h2, .tos-contact h4 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-details, .contact-content {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details p, .contact-content p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin: 0;
}

.contact-details strong, .contact-content strong {
  color: white;
}

/* Animations */
[data-aos] {
  transition-duration: 800ms;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .privacy.section {
    padding: 40px 15px;
  }
  
  .privacy-header h1 {
    font-size: 2.25rem;
  }
  
  .privacy-content, .tos-content {
    padding: 30px 20px;
  }
  
  .content-section h2, .content-section h3 {
    font-size: 1.4rem;
  }
  
  .privacy-contact, .tos-contact {
    padding: 30px 20px;
  }
}

/* Specific styling for Terms and Conditions Page */
.tos-header {
  margin-bottom: 50px;
}

.tos-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--privacy-primary);
  margin-bottom: 10px;
}

.tos-header p {
  font-size: 1.2rem;
  color: var(--privacy-text-light);
}
