/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #1a1a1a (dark), so text must be light */
  background-color: #1a1a1a; /* Ensure consistency with body background */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-privacy-policy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  border-bottom: 2px solid rgba(38, 169, 224, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0; /* Light text on dark background */
}

.page-privacy-policy__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white background for cards */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff; /* Light text on card background */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.page-privacy-policy__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  width: 100%;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #e0e0e0;
}

.page-privacy-policy__list-item::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-privacy-policy__image {
  max-width: 45%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
  object-fit: cover;
}

.page-privacy-policy__image--left {
  margin-right: 20px;
}

.page-privacy-policy__image--right {
  margin-left: 20px;
  order: 1; /* Move image to the right in flex layout */
}

.page-privacy-policy__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.page-privacy-policy__card p,
.page-privacy-policy__card ul {
  flex: 1;
  min-width: 300px; /* Ensure content wraps nicely */
}