.page-gdpr {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for light body background */
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
}

.page-gdpr__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000080; /* Navy background for hero */
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Navy text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-button:hover {
  background-color: #e6c200;
  color: #00005a;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-gdpr__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-gdpr__intro-section, .page-gdpr__commitment-section, .page-gdpr__principles-section,
.page-gdpr__data-collection-section, .page-gdpr__data-usage-section, .page-gdpr__your-rights-section,
.page-gdpr__security-measures-section, .page-gdpr__data-retention-section, .page-gdpr__data-sharing-section,
.page-gdpr__international-transfer-section, .page-gdpr__children-privacy-section, .page-gdpr__policy-changes-section,
.page-gdpr__contact-section {
  padding: 30px 0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000080; /* Navy for section titles */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 5px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444444;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

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

.page-gdpr__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px; /* Ensure images are not too small */
}

.page-gdpr__image--centered {
  text-align: center;
}

.page-gdpr__link {
  color: #000080;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

.page-gdpr__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px;
  background-color: #000080; /* Navy button */
  color: #FFD700; /* Gold text on navy button */
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-gdpr__cta-button:hover {
  background-color: #00005a;
  color: #ffe680;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__sub-title {
    font-size: 1.6em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px);
  }
  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__hero-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-gdpr__content-wrapper {
    padding: 15px;
    margin-bottom: 20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.9em;
  }
  .page-gdpr__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}