/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
}

.page-privacy-policy__hero-section {
  background-color: #000080; /* Auxiliary color for a strong header */
  color: #FFD700; /* Gold text for dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

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

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

.page-privacy-policy__main-heading {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* White background for content for readability */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-privacy-policy__article {
  margin-bottom: 40px;
}

.page-privacy-policy__section-heading {
  font-size: 2.2em;
  color: #000080; /* Dark blue heading */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: #000080; /* Dark blue sub-heading */
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-privacy-policy__link {
  color: #000080; /* Dark blue for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-privacy-policy__action-buttons {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-privacy-policy__back-home-button {
  display: inline-block;
  background-color: #000080; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-left: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__back-home-button:hover {
  background-color: #000066; /* Slightly darker blue on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__main-heading {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-heading {
    font-size: 2em;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.4em;
  }
  .page-privacy-policy__paragraph, .page-privacy-policy__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
    min-height: 300px;
  }
  .page-privacy-policy__main-heading {
    font-size: 2.2em;
  }
  .page-privacy-policy__intro-text {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-heading {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.3em;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
  .page-privacy-policy__action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-privacy-policy__cta-button, .page-privacy-policy__back-home-button {
    margin-left: 0;
    width: 100%;
  }

  /* Mobile content area image constraint */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
  .page-privacy-policy__content-image {
    min-width: 200px; /* Ensure min-width is respected */
    min-height: 200px; /* Ensure min-height is respected */
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-heading {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-heading {
    font-size: 1.6em;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.2em;
  }
  .page-privacy-policy__cta-button, .page-privacy-policy__back-home-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}