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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  height: 400px; /* Fixed height for desktop */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: #0A2463;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

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

.page-privacy-policy__main-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__intro-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 25px;
  margin-bottom: 10px;
}

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

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-privacy-policy__link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-privacy-policy__contact-list {
  list-style-type: none;
  padding-left: 0;
}

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
}

.page-privacy-policy__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #0A2463;
  color: #ffffff;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-privacy-policy__copyright {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: #666666;
  margin-top: 40px;
  border-top: 1px solid #eeeeee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    height: 300px;
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }

  .page-privacy-policy__intro-description {
    font-size: 1em;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__cta-title {
    font-size: 2em;
  }

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

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min-width for mobile */
    min-height: 200px; /* Ensure min-height for mobile */
  }

  .page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}