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

.page-privacy-policy__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  max-width: 1000px; /* Adjust max-width to fit content better */
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__register-button,
.page-privacy-policy__play-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__register-button:hover,
.page-privacy-policy__play-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-privacy-policy__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__article-title {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-privacy-policy__article-title:first-of-type {
  margin-top: 0;
}

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

.page-privacy-policy__paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__paragraph a:hover {
  text-decoration: underline;
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Content images should also be large */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }

  .page-privacy-policy__hero-image,
  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }
  
  /* Mobile content area images must not overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy {
    overflow-x: hidden;
  }
}

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

  .page-privacy-policy__register-button,
  .page-privacy-policy__play-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}