/* Privacy Policy Styles */

.privacy-policy .page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: #fff;
}

.privacy-policy .page-content header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.privacy-policy .page-content header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #4F12C9, #7B46E6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.privacy-policy .page-content .meta {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

.privacy-policy .page-content section {
  border-bottom: 1px solid #eee;
}

.privacy-policy .page-content section:last-of-type {
  border-bottom: none;
}

.privacy-policy .page-content section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4F12C9;
  display: inline-block;
}

.privacy-policy .page-content section h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem 0;
  color: #5a1bd4;
}

.privacy-policy .page-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.privacy-policy .page-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
}

.privacy-policy .page-content li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  list-style: none;
}

.privacy-policy .page-content li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: #4F12C9;
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-policy .page-content .contact a {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.privacy-policy .page-content .contact a:hover {
  border-bottom-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy .page-content {
    padding: 2rem 1rem;
  }

  .privacy-policy .page-content header h1 {
    font-size: 2.2rem;
  }

  .privacy-policy .page-content section h2 {
    font-size: 1.8rem;
  }

  .privacy-policy .page-content section h3 {
    font-size: 1.4rem;
  }

  .privacy-policy .page-content p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .privacy-policy .page-content header h1 {
    font-size: 1.8rem;
  }

  .privacy-policy .page-content section {
    padding: 1.5rem 0;
  }
}

/* Table Styles */
.privacy-policy .page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.privacy-policy .page-content table thead tr {
  background-color: #f8f9fa;
}

.privacy-policy .page-content table th {
  border: 1px solid #dee2e6;
  padding: 12px;
  text-align: left;
  font-weight: bold;
  color: #333;
}

.privacy-policy .page-content table td {
  border: 1px solid #dee2e6;
  padding: 12px;
}

.privacy-policy .page-content table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.privacy-policy .page-content table .text-center {
  text-align: center;
}

/* Responsive table */
@media (max-width: 768px) {
  .privacy-policy .page-content table {
    font-size: 0.9rem;
  }
  
  .privacy-policy .page-content table th,
  .privacy-policy .page-content table td {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .privacy-policy .page-content table {
    font-size: 0.8rem;
  }
  
  .privacy-policy .page-content table th,
  .privacy-policy .page-content table td {
    padding: 6px;
  }
}

/* Table of Contents Styles */
.privacy-policy .page-content ol {
  list-style-type: decimal;
  padding-left: 2rem;
}

.privacy-policy .page-content ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.privacy-policy .page-content ol li::before {
  display: none; /* Remove the custom bullet for ordered lists */
}

.privacy-policy .page-content ol li a {
  color: #4F12C9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy .page-content ol li a:hover {
  color: #7B46E6;
  text-decoration: underline;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}