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

.page-privacy-policy__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f0f0f0; /* Light background for hero section */
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-privacy-policy__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-privacy-policy__button--register:hover {
  background-color: #e0e0e0;
}

.page-privacy-policy__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--login:hover {
  background-color: #e6a73c;
}

.page-privacy-policy__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-privacy-policy__section {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.page-privacy-policy__section-text {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-privacy-policy__section-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px; /* Ensure minimum size for content images */
}

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

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

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

.page-privacy-policy__link:hover {
  color: #FCBC45;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  background-color: #000000;
  color: #FFFFFF;
}

.page-privacy-policy__button:hover {
  background-color: #333333;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

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

  .page-privacy-policy__hero-button {
    display: block;
    margin: 10px auto;
  }

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

  .page-privacy-policy__hero-image,
  .page-privacy-policy__section-image {
    max-width: 100%;
    height: auto;
    width: auto; /* Allow auto width to scale with max-width */
    min-width: 200px; /* Enforce min-width even on mobile */
    min-height: 200px; /* Enforce min-height even on mobile */
  }
}