/* =========================================
   Privacy Policy – privacy.css
   ========================================= */

/* Hero Banner */
.privacy-hero {
  position: relative;
  height: 180px;
  background: url('wallpaper.jpg') center 60% / cover no-repeat;
  display: flex;
  align-items: center;
}
.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,28,10,0.45) 0%, rgba(20,28,10,0.70) 100%);
}
.privacy-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
}
.privacy-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.privacy-hero-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* Main Content */
.privacy-main {
  background: var(--white);
  padding: 80px 0;
}
.privacy-content {
  max-width: 800px;
}

/* Sections */
.privacy-section {
  margin-bottom: 56px;
}
.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--green-accent);
  padding-bottom: 12px;
}
.privacy-section h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy-section p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.privacy-section a {
  color: var(--green-accent);
  font-weight: 600;
  transition: color var(--transition);
}
.privacy-section a:hover {
  color: var(--green-dark);
}
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}
.privacy-list li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.privacy-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-size: 0.65rem;
  top: 0.3em;
}

/* CTA Button */
.privacy-footer-nav {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-hero {
    height: 140px;
  }
  .privacy-main {
    padding: 48px 0;
  }
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  .privacy-content {
    padding: 0 16px;
  }
}
