.page-gdpr {
  color: #ffffff; /* Body background #1a1a2e (dark), so text must be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(2rem, 5vw, 3rem); /* H1 font size with clamp */
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark body */
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__sub-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block {
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-gdpr__keyword {
  color: #26A9E0;
  font-weight: bold;
}

.page-gdpr__image-text-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-gdpr__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image-container {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__text-group {
  flex: 2;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
  background: #1e87b3;
  border-color: #1e87b3;
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-gdpr__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-gdpr__section-faq {
  background: rgba(255, 255, 255, 0.05);
}

.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  list-style: none;
  color: #ffffff;
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #26A9E0;
}

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

.page-gdpr__faq-item summary .page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #ffffff;
}

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

.page-gdpr__faq-answer {
  padding-top: 15px;
  color: #e0e0e0;
}

.page-gdpr__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 8px;
  margin-top: 30px;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__cta-section .page-gdpr__description {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-section .page-gdpr__btn-primary {
  background: #EA7C07; /* Login color */
  border-color: #EA7C07;
}

.page-gdpr__cta-section .page-gdpr__btn-primary:hover {
  background: #c76706;
  border-color: #c76706;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__image-text-layout {
    flex-direction: column;
  }
  .page-gdpr__image-text-layout--reverse {
    flex-direction: column;
  }
  .page-gdpr__text-group {
    flex: none;
    width: 100%;
  }
  .page-gdpr__image-container {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-container,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-gdpr__hero-section {
    padding-top: 10px !important;
  }

  /* Mobile button responsiveness */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}