.page-gdpr {
  font-family: Arial, sans-serif;
  color: #FFFFFF;
  background-color: #100224; /* Deep purple-black for main background, following WOW88 style */
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #017439; /* Main brand color for hero background */
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-gdpr__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
  font-size: 1em;
}

.page-gdpr__button--register {
  background-color: #C30808; /* Red */
  color: #000000; /* Adjusted for WCAG AA contrast (5.37:1 against #C30808) */
  border: 1px solid #C30808;
}

.page-gdpr__button--register:hover {
  background-color: #A00606;
  color: #FFFFFF; /* Improve hover contrast */
}

.page-gdpr__button--login {
  background-color: #C30808; /* Red */
  color: #000000; /* Adjusted for WCAG AA contrast (5.37:1 against #C30808) */
  border: 1px solid #C30808;
}

.page-gdpr__button--login:hover {
  background-color: #A00606;
  color: #FFFFFF; /* Improve hover contrast */
}

.page-gdpr__section {
  padding: 40px 0;
  background-color: #1a0833; /* Slightly lighter dark for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #FFFF00; /* Yellow for section titles */
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(to right, #ff9500, #ff5e3a); /* Gold to orange gradient for H2 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-gdpr__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-gdpr__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__image-content {
  flex: 1;
  min-width: 200px; /* Ensure image content area is not too small */
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  object-position: center;
  max-width: 100%; /* Ensure responsiveness */
  min-width: 200px; /* Minimum display size */
  min-height: 200px; /* Minimum display size */
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__paragraph--small {
  font-size: 0.9em;
  text-align: center;
  color: #B0B0B0;
}

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

.page-gdpr__list-item {
  background-color: rgba(1, 116, 57, 0.2); /* Green tint for list items */
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  color: #FFFFFF;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #FFFF00; /* Yellow checkmark */
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-gdpr__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.page-gdpr__contact-info {
  font-style: normal;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-gdpr__contact-link {
  color: #FFFF00; /* Yellow for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #ff9500; /* Orange on hover */
}

.page-gdpr__button--contact {
  background-color: #017439; /* Main brand color */
  color: #FFFFFF;
  border: 1px solid #017439;
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.page-gdpr__button--contact:hover {
  background-color: #005A2C;
  color: #FFFF00;
}

.page-gdpr__faq-item {
  background-color: #1a0833; /* Slightly lighter dark for FAQ items */
  border: 1px solid rgba(1, 116, 57, 0.5);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-gdpr__faq-question {
  font-size: 1.3em;
  color: #FFFF00; /* Yellow for FAQ questions */
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-gdpr__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-question.is-active::after {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}

.page-gdpr__faq-answer.is-open {
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 849px) {
  .page-gdpr__hero-image-wrapper {
    margin-bottom: 0; /* Remove margin when content is below */
  }

  .page-gdpr__hero-content {
    padding: 20px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__content-wrapper,
  .page-gdpr__content-wrapper--reverse {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image-content {
    order: -1; /* Image above text on mobile for default content wrapper */
  }

  .page-gdpr__content-wrapper--reverse .page-gdpr__image-content {
    order: -1; /* Image above text on mobile for reverse content wrapper */
  }

  .page-gdpr__list--columns {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-section {
    padding-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.6em, 8vw, 2em);
  }

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

  .page-gdpr__section {
    padding: 30px 0;
  }

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

  .page-gdpr__paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__list-item {
    padding: 10px 15px;
  }

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

  .page-gdpr__faq-answer {
    font-size: 0.9em;
  }
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}

/* Ensure all content images meet minimum size requirements */
.page-gdpr img:not(.page-gdpr__hero-image) {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Ensure they scale */
  height: auto;
  object-fit: cover;
}