/* 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);
  border: 2px solid var(--color-yellow-button);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.privacy-section:hover {
  border-color: rgba(46, 204, 113, 0.6);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-heading-yellow);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(46, 204, 113, 0.3);
  border-bottom: 2px solid rgba(46, 204, 113, 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-yellow);
  margin: 1.5rem 0 1rem 0;
  text-shadow: 0 1px 2px rgba(46, 204, 113, 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-yellow);
}

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

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

.section-content a:hover {
  color: var(--color-yellow-hover) !important;
  text-shadow: 0 0 5px rgba(255, 215, 0, 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);
  }
}

/* Review CTA Section */
.review-cta-container {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem 0;
  background: var(--color-dark-card-bg);
  border: 2px solid var(--color-emerald-green);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.review-cta-container:hover {
  border-color: var(--color-emerald-green-hover);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
}

.review-cta-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: var(--fs-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  min-width: 250px;
}

.review-cta-disclaimer {
  color: #ccc;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .review-cta-container {
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .review-cta-button {
    padding: 1rem 2rem;
    font-size: var(--fs-base);
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .review-cta-container {
    padding: 1.5rem 1rem;
  }
  
  .review-cta-button {
    padding: 0.875rem 1.5rem;
    font-size: var(--fs-base);
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
}

/* 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;
  }
}