.privacy-container {
  max-width: 800px;
  margin: 120px auto 60px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #d4af37;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--primary-dark);
}

.privacy-content h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.privacy-content ul,
.privacy-content ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.privacy-content ul li,
.privacy-content ol li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.privacy-content ol li {
  list-style-type: decimal;
}

.privacy-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
  text-align: center;
}

.privacy-footer p {
  color: var(--gray);
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: #d4af37;
}

.table-container {
  margin-bottom: 20px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table,
th,
td {
  border: 1px solid var(--light-gray);
}

th,
td {
  padding: 12px 15px;
  text-align: left;
}

th {
  background-color: var(--light);
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #f8f9fa;
}
