/* =========================================
   Privacy Policy Page – Fully Improved CSS
   ========================================= */

/* Global Body Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.75;
  font-size: 16px;
  color: var(--text-primary, #333);
  background-color: var(--bg-secondary, #f9f9f9);
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  background-color: var(--bg-light, #ffffff);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 2px solid var(--color-primary-light, #e0e0e0);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--color-primary-dark, #111);
  font-weight: 700;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted, #555);
  max-width: 700px;
  margin: 0 auto;
}

/* Privacy Content Section */
.privacy-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 30px;
  background-color: var(--bg-light, #fff);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  line-height: 1.8;
}

/* Section Headings */
.privacy-content h2 {
  font-size: 1.9rem;
  color: var(--color-primary-dark, #111);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-primary-light, #e0e0e0);
  padding-bottom: 8px;
  font-weight: 600;
}

/* Paragraphs */
.privacy-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-muted, #555);
  line-height: 1.8;
}

/* Lists */
.privacy-content ul.benefits {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-content ul.benefits li {
  margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
  font-weight: 600;
  color: var(--color-primary-dark, #111);
  margin-bottom: 30px;
}

/* Links */
.privacy-content a {
  color: var(--color-primary-teal, #008080);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.privacy-content a:hover {
  color: var(--color-primary-cyan, #00bcd4);
  text-decoration: none;
}

/* Text Centering */
.text-center {
  text-align: center;
}

/* Margins */
.mt-4 {
  margin-top: 32px;
}

/* Buttons / CTA */
.btn-footer-cta {
  background: var(--color-primary-teal, #008080);
  color: var(--text-inverse, #fff);
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  background: var(--color-primary-cyan, #00bcd4);
}

/* Footer Overrides */
.site-footer {
  padding: 60px 30px;
  background-color: var(--bg-light, #fff);
  border-top: 2px solid var(--color-primary-light, #e0e0e0);
}

.footer-links ul,
.footer-contact .contact-buttons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact .contact-buttons a {
  margin-bottom: 8px;
}

.footer-contact .contact-buttons a {
  display: inline-block;
  margin-right: 16px;
  font-weight: 500;
  color: var(--text-inverse, #333);
  transition: color 0.3s ease;
}

.footer-contact .contact-buttons a:hover {
  color: var(--color-primary-cyan, #00bcd4);
}

/* Professional Enhancements */
.privacy-content h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary-teal, #008080);
  margin-bottom: 12px;
  border-radius: 2px;
}

.privacy-content p strong {
  color: var(--color-primary-dark, #111);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.2rem;
  }
  .privacy-content {
      padding: 30px 20px;
  }
  .privacy-content h2 {
      font-size: 1.6rem;
  }
}



/* =========================================
   Privacy Policy Page – Additional Professional Enhancements
   ========================================= */

/* Section Card Styling */
.privacy-content section {
  padding: 40px 30px;
  margin-bottom: 40px;
  border-radius: 12px;
  background-color: var(--bg-light, #ffffff);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  border-left: 4px solid var(--color-primary-teal, #008080);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-content section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Improved Headings Inside Sections */
.privacy-content h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--color-primary-dark, #111);
}

.privacy-content h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 16px;
  color: var(--color-primary-dark, #111);
  font-weight: 600;
}

/* Paragraphs & Line Spacing */
.privacy-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 22px;
  color: var(--text-muted, #555);
}

/* Lists – More Elegant */
.privacy-content ul {
  list-style: disc inside;
  padding-left: 25px;
  margin-bottom: 25px;
}

.privacy-content ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Horizontal Separators Between Sections */
.privacy-content hr {
  border: 0;
  border-top: 1px solid var(--color-primary-light, #e0e0e0);
  margin: 40px 0;
}

/* Emphasis & Highlights */
.privacy-content p strong {
  color: var(--color-primary-dark, #111);
  font-weight: 600;
}

/* Links & Decorations */
.privacy-content a {
  color: var(--color-primary-teal, #008080);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.privacy-content a:hover {
  color: var(--color-primary-cyan, #00bcd4);
  text-decoration: none;
}

/* Contact Info Box */
.contact-info {
  background-color: var(--bg-secondary, #f5f5f5);
  padding: 20px 25px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--color-primary-dark, #111);
  margin-bottom: 40px;
}

/* Footer CTA / Buttons */
.btn-footer-cta {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.1);
}

/* Hero Paragraph */
.hero p {
  line-height: 1.75;
  font-size: 1.2rem;
  color: var(--text-muted, #555);
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .privacy-content {
      padding: 40px 20px;
  }
  .privacy-content h2 {
      font-size: 1.8rem;
  }
  .privacy-content p {
      font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero {
      padding: 60px 15px 40px;
  }
  .hero h1 {
      font-size: 2rem;
  }
  .privacy-content {
      margin: 40px 15px;
      padding: 30px 20px;
  }
  .privacy-content h2 {
      font-size: 1.6rem;
      margin-bottom: 18px;
  }
  .privacy-content p {
      font-size: 1rem;
      line-height: 1.8;
  }
}

/* Subtle Section Number Accent */
.privacy-content h2::before {
  content: counter(section);
  counter-increment: section;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary-teal, #008080);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 12px;
  font-weight: 700;
}

/* Reset Counter */
.privacy-content {
  counter-reset: section;
}

/* Smooth Transitions for Hover Effects */
.privacy-content section,
.btn-footer-cta,
.footer-contact .contact-buttons a {
  transition: all 0.3s ease;
}
