/* Privacy Policy Specific Styles */

/* Header Styles */
.privacy-header {
  padding-top: 120px;
  background: linear-gradient(135deg, var(--bs-primary-bg-subtle) 0%, var(--bs-light) 100%);
  position: relative;
  overflow: hidden;
}

.privacy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23007bff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.privacy-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
}

/* Content Styles */
.privacy-content {
  background-color: var(--bs-body-bg);
}

.privacy-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  position: relative;
}

.privacy-toc {
  background-color: var(--bs-light);
  border-radius: 8px;
  padding: 1.5rem;
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.toc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bs-primary);
}

.toc-list a {
  color: var(--bs-body-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.toc-list a:hover {
  color: var(--bs-primary);
}

.privacy-section {
  padding-top: 2rem;
  border-bottom: 1px solid var(--bs-border-color);
  padding-bottom: 2rem;
}

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

.privacy-section h2 {
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.subsection h3 {
  color: var(--bs-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-list {
  padding-left: 1.5rem;
}

.privacy-list li {
  margin-bottom: 0.75rem;
  position: relative;
}

.privacy-list li strong {
  color: var(--bs-dark);
}

.data-type h4 {
  color: var(--bs-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-updated {
  text-align: right;
  font-style: italic;
}

.privacy-intro {
  margin-bottom: 2rem;
}

.privacy-intro p {
  margin-bottom: 1rem;
}

.highlight-box {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
  margin: 0;
  color: #856404;
}

.highlight-box strong {
  color: #856404;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .privacy-card {
    padding: 1.5rem;
  }
  
  .privacy-header {
    padding-top: 100px;
  }
  
  .privacy-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

/* Animation for sections */
.privacy-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.privacy-section.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Highlight current section */
.privacy-section:target {
  animation: highlight 2s ease;
}

@keyframes highlight {
  0% {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
  }
  100% {
    background-color: transparent;
  }
}
