.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #1a1a1a, so text should be light */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #1a1a1a; /* Ensure dark background for hero */
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px; /* Space between image and content */
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1; /* Ensure content is above any potential background effects */
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Custom color for login/register */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-gdpr__btn-primary:hover {
  background-color: #d16b06;
}

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

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on light background */
}

.page-gdpr__dark-section {
  background-color: #1a1a1a;
  color: #ffffff; /* Light text on dark background */
}

.page-gdpr__section-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for section titles */
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

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

.page-gdpr__ordered-list {
  list-style-type: decimal;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #1e87b7;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  object-fit: cover;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 20px;
  max-width: 400px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 20px;
  max-width: 400px;
}

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

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-gdpr__faq-item.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #26A9E0; /* Brand color for FAQ questions */
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
}

.page-gdpr__faq-answer {
  padding: 0 20px 15px;
  font-size: 0.95rem;
  color: #f0f0f0;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
    max-width: 100%;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 30px;
  }

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

  .page-gdpr__intro-text {
    font-size: 1rem;
  }

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.2rem;
  }
}