/* style/privacy-policy.css */
.page-privacy-policy {
  color: #333333; /* Default dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-privacy-policy__hero-section {
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B23C; /* Accent color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #E3B23C; /* Accent color for CTA button */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E3B23C;
}

.page-privacy-policy__cta-button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.page-privacy-policy__article {
  flex: 3;
  min-width: 300px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__sidebar {
  flex: 1;
  min-width: 280px;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
}

.page-privacy-policy__article-title, .page-privacy-policy__sidebar-title {
  color: #0A2463;
  font-size: 2.2em;
  margin-bottom: 30px;
  border-bottom: 3px solid #E3B23C;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  color: #0A2463;
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-privacy-policy__article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-privacy-policy__link, .page-privacy-policy__sidebar-link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover, .page-privacy-policy__sidebar-link:hover {
  color: #E3B23C;
  text-decoration: underline;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__sidebar-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__sidebar-list-item {
  margin-bottom: 15px;
}

.page-privacy-policy__sidebar-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
}

.page-privacy-policy__sidebar-link:hover {
  background-color: #E3B23C1A; /* Light gold tint on hover */
  border-radius: 4px;
  padding-left: 5px;
}

.page-privacy-policy__sidebar-cta {
  margin-top: 40px;
  text-align: center;
  background-color: #0A2463;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
}

.page-privacy-policy__sidebar-cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #E3B23C;
}

.page-privacy-policy__sidebar-cta-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E3B23C;
}

.page-privacy-policy__sidebar-cta-button:hover {
  background-color: #f5db9c;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-privacy-policy__content-area {
    flex-direction: column;
  }

  .page-privacy-policy__article, .page-privacy-policy__sidebar {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__main-title {
    font-size: 2.5em;
  }

  .page-privacy-policy__intro-text {
    font-size: 1.1em;
  }

  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__content-area {
    padding: 40px 15px;
  }

  .page-privacy-policy__article-title, .page-privacy-policy__sidebar-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.5em;
  }

  .page-privacy-policy__image-wrapper img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 2em;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-privacy-policy__article, .page-privacy-policy__sidebar {
    padding: 20px;
  }
}