/* Privacy page specific styles */

.privacy-hero {
  min-height: 100vh;
}

.privacy-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-intro h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 2.5rem;
}

.privacy-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.last-updated {
  font-size: 1rem;
  opacity: 0.8;
  font-style: italic;
  color: white;
  font-weight: 300;
}

/* Privacy content section */
.privacy-content-section {
  background: #fafbfc;
  padding: 6rem 0;
}

.privacy-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-section {
  margin-bottom: 4rem;
}

.privacy-section h2 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.privacy-section h3 {
  color: #333;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.privacy-section p {
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.privacy-section strong {
  color: #2d3748;
  font-weight: 600;
}

.privacy-section em {
  color: #718096;
  font-style: italic;
}

.privacy-section ul {
  margin: 2rem 0;
  padding-left: 0;
  list-style: none;
}

.privacy-section ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #4a5568;
  line-height: 1.75;
}

.privacy-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a0aec0;
  font-size: 1.2rem;
}

.privacy-section ol {
  margin: 2rem 0;
  padding-left: 1.5rem;
  counter-reset: item;
}

.privacy-section ol li {
  margin-bottom: 1rem;
  color: #4a5568;
  line-height: 1.75;
}

.privacy-section a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.privacy-section a:hover {
  color: #5a6fd8;
  border-bottom-color: #667eea;
}

/* Table of contents */
#toc {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

#toc h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
}

#toc ol {
  margin: 0;
  padding-left: 1.5rem;
  counter-reset: toc-item;
}

#toc ol li {
  counter-increment: toc-item;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

#toc ol li a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

#toc ol li a:hover {
  color: #667eea;
  border-bottom: none;
}

/* Odd sections special styling */
.privacy-section:first-of-type,
.privacy-section[id="infocollect"],
.privacy-section[id="whoshare"],
.privacy-section[id="infominors"],
.privacy-section[id="DNT"],
.privacy-section[id="policyupdates"],
.privacy-section[id="request"] {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  margin-bottom: 4rem;
}

/* Contact section special styling */
.privacy-section[id="contact"] {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-intro {
    padding: 0 1.5rem;
  }
  
  .privacy-intro h2 {
    font-size: 2rem;
  }
  
  .privacy-container {
    padding: 0 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.1rem;
  }
  
  #toc {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .privacy-section[id="contact"] {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .privacy-section:first-of-type,
  .privacy-section[id="infocollect"],
  .privacy-section[id="whoshare"],
  .privacy-section[id="infominors"],
  .privacy-section[id="DNT"],
  .privacy-section[id="policyupdates"],
  .privacy-section[id="request"] {
    padding: 2rem;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-intro h2 {
    font-size: 1.75rem;
  }
  
  .privacy-intro p {
    font-size: 1.1rem;
  }
  
  .privacy-container {
    padding: 0 1rem;
  }
  
  .privacy-section {
    margin-bottom: 3rem;
  }
  
  .privacy-section:first-of-type {
    padding: 1.5rem;
    border-radius: 15px;
  }
}