/* Privacy Policy Styles */
.privacy-section {
  color: var(--text-primary);
  line-height: 1.8;
}

.privacy-section h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.privacy-section h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.privacy-section h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

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

.last-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.table {
  color: var(--text-primary);
  border-color: var(--primary);
  margin-bottom: 2rem;
}

.table thead {
  background: var(--primary);
  color: var(--text-light);
  border-bottom: 2px solid var(--primary);
}

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table td,
.table th {
  padding: 1rem;
  vertical-align: top;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.privacy-section {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .privacy-section h1 {
    font-size: 2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .table {
    font-size: 0.875rem;
  }
  
  .table th,
  .table td {
    padding: 0.75rem;
    white-space: nowrap;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}