/* ===== PRIVACY PAGE STYLES ===== */
.privacy-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.privacy-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(7, 20, 63, 0.08);
}

.privacy-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.privacy-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Sections */
.privacy-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(7, 20, 63, 0.05);
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-top: 8px;
}

.privacy-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.privacy-section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 800px;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.privacy-section ul li {
  font-size: 0.93rem;
  color: var(--text-primary);
  line-height: 1.6;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(7, 20, 63, 0.03);
}

.privacy-section ul li:last-child {
  border-bottom: none;
}

.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.privacy-section a {
  color: var(--secondary);
  font-weight: 500;
}

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

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 16px 0 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(7, 20, 63, 0.08);
}

.privacy-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.privacy-section thead {
  background: var(--bg-light);
}

.privacy-section th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid rgba(7, 20, 63, 0.08);
}

.privacy-section td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(7, 20, 63, 0.04);
  line-height: 1.5;
}

.privacy-section tr:last-child td {
  border-bottom: none;
}

.privacy-section tr:hover td {
  background: rgba(3, 202, 200, 0.02);
}

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

  .privacy-section h2 {
    font-size: 1.2rem;
  }

  .privacy-section table {
    font-size: 0.82rem;
  }

  .privacy-section th,
  .privacy-section td {
    padding: 10px 12px;
  }
}
