/* style/privacy-policy.css */

/* Global page styling for privacy policy */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0d0d1a; /* Inherited from shared.css, set here for clarity and override if needed */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-privacy-policy__hero-section {
  padding: 120px 0 60px; /* Adjust padding-top for fixed header */
  background: linear-gradient(135deg, #0d0d1a 0%, #001f4d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-privacy-policy__brand-link {
  color: #ffc107; /* Auxiliary color for brand link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__brand-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* CTA Buttons */
.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button--primary {
  background: var(--primary-color, #007bff);
  color: #ffffff;
}

.page-privacy-policy__cta-button--primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--secondary {
  background: var(--secondary-color, #ffc107);
  color: #000000; /* Dark text for light background */
}

.page-privacy-policy__cta-button--secondary:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: #1a1a2e; /* Slightly lighter dark background for content */
  color: #f0f0f0;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #ffc107; /* Auxiliary color for main titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 193, 7, 0.3);
  padding-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #007bff; /* Primary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  padding: 0;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}