/* =========================================
   PRIVACY POLICY PAGE STYLES
   Premium Dark Theme
   ========================================= */

.policy-section {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.policy-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

/* Header */
.policy-card .text-center {
  margin-bottom: 35px;
}

.policy-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.policy-updated {
  font-size: 14px;
  color: var(--text-muted);
}

/* Content */
.policy-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.policy-content p {
  margin-bottom: 16px;
}

/* Section Headings */
.policy-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.policy-heading::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
}

/* Subheadings */
.policy-subheading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 12px;
}

/* Lists */
.policy-content ul {
  margin: 16px 0;
  padding-left: 0;
}

.policy-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Strong text */
.policy-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Email links */
.policy-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: var(--gold-bright);
}

/* Responsive */
@media (max-width: 768px) {
  .policy-section {
    padding: 40px 0;
  }
  
  .policy-card {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .policy-title {
    font-size: 26px;
  }
  
  .policy-heading {
    font-size: 18px;
    margin-top: 30px;
  }
}
