/**
 * Privacy Policy Page Styles
 */

.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
  border-radius: 8px;
  border-left: 4px solid #bc13fe;
  color: #e0e0e0;
  line-height: 1.8;
}

.privacy-container h1 {
  color: #bc13fe;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.privacy-container .last-updated {
  text-align: center;
  color: #999;
  margin-bottom: 40px;
  font-size: 14px;
}

.privacy-container h2 {
  color: #bc13fe;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(188, 19, 254, 0.3);
  padding-bottom: 10px;
}

.privacy-container h3 {
  color: #e91e63;
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-container p {
  margin-bottom: 15px;
  color: #b0b0b0;
}

.privacy-container ul {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #b0b0b0;
}

.privacy-container li {
  margin-bottom: 8px;
}

.privacy-container a {
  color: #bc13fe;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-container a:hover {
  color: #e91e63;
  text-decoration: underline;
}

.back-btn {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: rgba(188, 19, 254, 0.2);
  color: #bc13fe;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(188, 19, 254, 0.3);
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .privacy-container {
    margin: 20px;
    padding: 15px;
  }

  .privacy-container h1 {
    font-size: 1.8rem;
  }

  .privacy-container h2 {
    font-size: 1.2rem;
  }
}
