/* Privacy-specific helper overrides to work seamlessly with main.css */
.privacy-section {
  margin-bottom: 35px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 25px;
  scroll-margin-top: 100px;
  /* offset for fixed navbar */
}

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

.privacy-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section h4 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  font-weight: 600;
}

.privacy-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
}

.privacy-section ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
}

.privacy-section ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-size: 1rem;
}

.last-updated {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
  color: var(--text-muted);
  border-left: 4px solid var(--primary-indigo);
}

/* Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 15px;
  padding: 25px;
  margin: 40px 0 20px;
  border: 1px solid var(--glass-border);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.contact-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-indigo);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-details {
  flex: 1;
}

.contact-details h6 {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}

.contact-details a {
  color: var(--secondary-blue);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--primary-indigo);
}

.contact-details p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Table of Contents */
.toc {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-indigo);
}

.toc h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.toc ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toc ul li {
  margin-right: 20px;
}

.toc ul li a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  display: inline-block;
  padding: 5px 0;
}

.toc ul li a:hover,
.toc ul li a.active {
  color: #ffffff !important;
  transform: translateX(3px);
}

.toc ul li a i {
  font-size: 0.8rem;
  margin-right: 5px;
  color: var(--secondary-blue);
}