/* privacy_policy.css */

.privacy-section {
  min-height: calc(100vh - 60px);
  padding: 40px 20px;
  background: linear-gradient(135deg, #0d1117 0%, #1a222e 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding-top: 80px; /* for header spacing */
}

.privacy-card {
  background: #161b22;
  padding: 30px 40px;
  max-width: 720px;
  width: 100%;
  border-radius: 16px;
  box-shadow:
    0 0 18px #00ffccaa,
    0 0 40px #00ffcc99,
    0 18px 55px rgba(0, 255, 204, 0.4);
  color: #f0f6fc;
  user-select: text;
}

.privacy-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #00ffcc;
  margin-bottom: 24px;
  text-align: center;
  text-shadow:
    0 0 10px #00ffccdd,
    0 0 35px #00ffccbb;
  animation: privacy-glowText 3s ease-in-out infinite alternate;
}

.privacy-intro {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.6;
  text-align: center;
}

.privacy-section-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffc3;
  margin-bottom: 10px;
  margin-top: 25px;
  text-shadow: 0 0 8px #00ffccaa;
}

.privacy-section-content p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 15px;
}

.privacy-link {
  color: #00ffcc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #0ee6b7;
  text-decoration: underline;
}

/* Animations */
@keyframes privacy-glowText {
  0% {
    text-shadow: 0 0 10px #00ffccbb, 0 0 25px #00ffcc88;
  }
  100% {
    text-shadow: 0 0 35px #00ffccdd, 0 0 60px #00ffcccc;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-card {
    padding: 25px 20px;
    max-width: 100%;
  }

  .privacy-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .privacy-section-content h2 {
    font-size: 1.25rem;
  }

  .privacy-section-content p,
  .privacy-intro {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .privacy-title {
    font-size: 1.6rem;
  }

  .privacy-section-content h2 {
    font-size: 1.1rem;
  }

  .privacy-section-content p,
  .privacy-intro {
    font-size: 0.9rem;
  }
}
