.page-gdpr {
  background-color: var(--background-color, #0D0E12);
  color: var(--text-main-color, #FFF3E6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Assuming body padding-top is handled by shared.css */
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-gdpr__cta-button--secondary {
  background: #17191F;
  border: 2px solid var(--border-color, #A84F0C);
  color: var(--text-main-color, #FFF3E6);
}

.page-gdpr__cta-button--secondary:hover {
  background: var(--border-color, #A84F0C);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--text-main-color, #FFF3E6);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 20px;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__rights-list,
.page-gdpr__protection-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__rights-item,
.page-gdpr__protection-item {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-gdpr__rights-title,
.page-gdpr__protection-subtitle {
  font-size: 1.5em;
  color: var(--glow-color, #FFB04D);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__rights-item p,
.page-gdpr__protection-item p {
  color: var(--text-main-color, #FFF3E6);
  font-size: 1em;
  margin-bottom: 10px;
}

.page-gdpr__contact-info {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 8px;
  padding: 25px;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-gdpr__contact-info p {
  color: var(--text-main-color, #FFF3E6);
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__contact-info a {
  color: var(--glow-color, #FFB04D);
  text-decoration: none;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 30px auto;
}

.page-gdpr__faq-item {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--glow-color, #FFB04D);
  cursor: pointer;
  background-color: #17191F;
  position: relative;
  list-style: none;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom: 1px solid var(--border-color, #A84F0C);
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-question::marker {
  display: none;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--text-main-color, #FFF3E6);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1em;
  color: var(--text-main-color, #FFF3E6);
}

.page-gdpr__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.highlight-keyword {
  color: var(--deep-orange-color, #D96800);
  font-weight: bold;
}

.page-gdpr__link-text {
  color: var(--glow-color, #FFB04D);
  text-decoration: underline;
}

.page-gdpr__link-text:hover {
  color: var(--deep-orange-color, #D96800);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 20px 15px;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__main-title {
    font-size: 2em; /* Adjusted for mobile */
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-button,
  .page-gdpr__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add space between buttons if stacked */
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-gdpr__text-block,
  .page-gdpr__rights-item p,
  .page-gdpr__protection-item p,
  .page-gdpr__contact-info p,
  .page-gdpr__faq-answer p {
    font-size: 0.95em;
  }

  .page-gdpr__rights-title,
  .page-gdpr__protection-subtitle {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .page-gdpr__rights-item,
  .page-gdpr__protection-item,
  .page-gdpr__contact-info,
  .page-gdpr__faq-item {
    padding: 15px;
  }

  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  /* General image responsiveness for all images within .page-gdpr */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__overview-section,
  .page-gdpr__rights-section,
  .page-gdpr__protection-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__contact-info {
    text-align: center;
  }
}