/* Privacy page specific styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(15px);
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards
    calc(var(--animation-delay) + 0.3s);
}

.privacy-title {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "HelveticaNowDisplay-Bold", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.06em;
  font-weight: 700;
  margin-bottom: 40px;
}

.privacy-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "HelveticaNowDisplay-Bold", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
}

.privacy-text p {
  margin-bottom: 20px;
}

.effective-date {
  font-weight: 700;
  color: rgba(62, 123, 180, 0.8);
  margin-bottom: 30px !important;
}

.privacy-text ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-text li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-text a {
  color: rgba(62, 123, 180, 0.8);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-text a:hover {
  color: rgba(62, 123, 180, 1);
}

.logo-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 36px;
  }

  .privacy-text {
    font-size: 16px;
  }

  .privacy-content {
    padding: 20px 15px;
  }
}

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

  .privacy-text {
    font-size: 14px;
  }

  .privacy-content {
    padding: 15px 10px;
  }
}
