/* Privacy Policy Page Styles */

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

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 700;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #4b5563;
}

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

.privacy-section ul {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #4b5563;
  padding-left: 24px;
}

.privacy-section ul:last-child {
  margin-bottom: 0;
}

.privacy-section li {
  margin-bottom: 8px;
}

.privacy-section li:last-child {
  margin-bottom: 0;
}

.privacy-section strong {
  font-weight: 600;
  color: var(--color-primary);
}

.privacy-contact-box {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--color-bg-lighter);
  border-radius: 12px;
}

.privacy-contact-box h2 {
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 700;
}

.privacy-contact-box p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: #4b5563;
}

.privacy-contact-box p:last-of-type {
  margin-top: 16px;
  margin-bottom: 0;
}

.privacy-contact-box a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-contact-box a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.privacy-footer {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.privacy-footer p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
  text-align: center;
}

.privacy-footer strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 20px;
  }

  .privacy-section p,
  .privacy-section ul {
    font-size: 15px;
  }

  .privacy-contact-box {
    padding: 20px;
  }

  .privacy-contact-box h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .privacy-section {
    margin-bottom: 32px;
  }

  .privacy-section h2 {
    font-size: 18px;
  }

  .privacy-section p,
  .privacy-section ul {
    font-size: 14px;
  }

  .privacy-contact-box {
    padding: 16px;
  }

  .privacy-contact-box h2 {
    font-size: 18px;
  }
}

