/* Privacy Page Specific Styles */

/* ========================================
   PRIVACY PAGE LAYOUT
   ======================================== */

/* Override global section padding */
section.privacy-section {
  padding: 0;
  margin-bottom: var(--space-3);
}

.privacy-page {
  padding: var(--space-8) 0 var(--space-12);
  background: var(--bg);
}

.privacy-header {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.privacy-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--blue-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.privacy-meta p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

.privacy-meta strong {
  color: var(--text-heading);
  font-weight: var(--font-semibold);
}

.privacy-intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   PRIVACY CONTENT SECTIONS
   ======================================== */

.privacy-content {
  max-width: 768px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: var(--space-3);
}

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

.privacy-section h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
  color: var(--text-heading);
  padding-bottom: var(--space-1);
  border-bottom: 2px solid var(--blue-100);
}

.privacy-section h3 {
  font-size: var(--text-base);
  margin-top: var(--space-2);
  margin-bottom: var(--space-1);
  color: var(--blue-700);
  font-weight: var(--font-semibold);
}

.privacy-section p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-2);
}

.privacy-section ul {
  margin-bottom: var(--space-2);
  padding-left: var(--space-5);
  margin-top: var(--space-1);
}

.privacy-section li {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-1);
}

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

.privacy-section strong {
  color: var(--text-heading);
  font-weight: var(--font-semibold);
}

/* Highlight Box */
.highlight {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
  border-left: 4px solid var(--primary);
  padding: var(--space-5) var(--space-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-4) 0;
  font-weight: var(--font-medium);
  color: var(--blue-800);
}

/* Contact Card */
.contact-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.contact-card p {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: var(--font-medium);
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ========================================
   FOOTER LINKS UPDATE
   ======================================== */

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--gray-400);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-links a svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .privacy-page {
    padding: var(--space-8) 0 var(--space-12);
  }
  
  .privacy-header h1 {
    font-size: var(--text-3xl);
  }
  
  .privacy-meta {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .privacy-intro {
    font-size: var(--text-base);
  }
  
  .privacy-section h2 {
    font-size: var(--text-xl);
  }
  
  .privacy-section h3 {
    font-size: var(--text-base);
  }
  
  .privacy-section ul {
    padding-left: var(--space-4);
  }
  
  .highlight {
    padding: var(--space-4) var(--space-5);
    margin: var(--space-4) 0;
  }
  
  .contact-card {
    padding: var(--space-5) var(--space-6);
    margin-top: var(--space-4);
  }
  
  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .privacy-header {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
  }
  
  .privacy-section {
    margin-bottom: var(--space-5);
  }
}
