/**
 * Privacy Policy Page Styles
 * MarketMate Privacy Policy specific styles
 */

/* Header */
.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.header .subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.last-updated {
  font-size: 14px;
  opacity: 0.8;
}

/* Content */
.content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
}

/* Table of Contents */
.toc {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
}

.toc h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.toc-list a:hover {
  color: white;
  transform: translateX(5px);
}

/* Content Typography */
.content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: white;
}

.content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: white;
}

.content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

.content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.9;
}

.content strong {
  color: white;
  font-weight: 600;
}

.content a {
  color: white;
  text-decoration: underline;
}

.content a:hover {
  opacity: 0.8;
}

.intro {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Compliance Box */
.compliance {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.compliance li {
  list-style: none;
  margin-bottom: 5px;
}

/* Responsive - Privacy Page */
@media (max-width: 768px) {
  .header h1 {
    font-size: 36px;
  }

  .content h2 {
    font-size: 24px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content {
    padding: 25px;
  }
}
