/* PRIVACY POLICY PAGE STYLES */

/* Privacy Policy Section */
.privacy-policy-section {
  padding: 3rem 0;
  background: var(--color-bg);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Privacy Section */
.privacy-section {
  background: var(--color-dark-card-bg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.privacy-section:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-heading-green);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(126, 211, 33, 0.3);
  border-bottom: 2px solid rgba(126, 211, 33, 0.3);
  padding-bottom: 0.5rem;
}

/* Subsection Titles */
.subsection-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-heading-green);
  margin: 1.5rem 0 1rem 0;
  text-shadow: 0 1px 2px rgba(126, 211, 33, 0.3);
}

/* Section Content */
.section-content {
  color: #eee;
  font-family: var(--font-base);
  line-height: var(--line-height);
}

.section-content p {
  font-size: var(--fs-base);
  margin-bottom: 1.25rem;
  text-align: justify;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* Lists */
.section-content ul {
  margin: 1rem 0 1.25rem 1.5rem;
  padding: 0;
}

.section-content li {
  font-size: var(--fs-base);
  margin-bottom: 0.75rem;
  line-height: var(--line-height);
  position: relative;
}

.section-content li::marker {
  color: var(--color-heading-green);
}

/* Strong text styling */
.section-content strong {
  color: var(--color-heading-green);
  font-weight: 600;
}

/* Links within content */
.section-content a {
  color: var(--color-heading-green) !important;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.section-content a:hover {
  color: var(--color-green-hover) !important;
  text-shadow: 0 0 5px rgba(126, 211, 33, 0.5);
}

/* Hero section adjustments for privacy policy */
.hero .hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero .hero__text {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 2rem 0;
  }
  
  .privacy-content {
    margin: 0 1rem;
  }
  
  .privacy-section {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: var(--fs-lg);
  }
  
  .subsection-title {
    font-size: var(--fs-md);
  }
  
  .section-content p,
  .section-content li {
    font-size: var(--fs-sm);
    text-align: left;
  }
  
  .section-content ul {
    margin-left: 1rem;
  }
  
  .hero .hero__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    margin: 0 0.5rem;
  }
  
  .privacy-section {
    padding: 1.5rem 1rem;
  }
  
  .section-title {
    font-size: var(--fs-base);
    margin-bottom: 1rem;
  }
  
  .subsection-title {
    font-size: var(--fs-base);
    margin: 1rem 0 0.75rem 0;
  }
  
  .section-content p,
  .section-content li {
    font-size: 0.875rem;
  }
  
  .hero .hero__title {
    font-size: 2rem;
  }
  
  .hero .hero__text {
    font-size: var(--fs-sm);
  }
}

/* Print styles */
@media print {
  .privacy-section {
    background: white;
    border: 1px solid #ccc;
    box-shadow: none;
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  .section-title,
  .subsection-title {
    color: #333;
    text-shadow: none;
  }
  
  .section-content {
    color: #333;
  }
  
  .section-content strong {
    color: #333;
  }
}