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

.page-gdpr__hero-section {
  background-color: #000000; /* Black background for hero */
  color: #ffffff; /* White text on black background */
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Prevent content overflow */
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px; /* Ensure image doesn't stretch too wide on very large screens */
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text on button */
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.page-gdpr__hero-button:hover {
  background-color: #e0a53b;
}

.page-gdpr__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);
  margin-top: -80px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 3;
}

.page-gdpr__article-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

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

.page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce min-width for content images */
  min-height: 200px; /* Enforce min-height for content images */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
  color: #FCBC45; /* Login color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #e0a53b;
}

.page-gdpr__action-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #000000; /* Black button */
  color: #FFFFFF; /* White text */\  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description,
  .page-gdpr__article p,
  .page-gdpr__list-item {
    font-size: 1em;
  }

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

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

  .page-gdpr__content-area {
    padding: 20px 15px;
    margin-top: -40px;
  }

  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

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

  /* Critical: Prevent content overflow for images on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__action-buttons {
    flex-direction: column;
    gap: 15px;
  }
}