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

.page-gdpr__hero-section {
  position: relative;
  padding-top: 0; /* shared handles body padding-top */
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background: linear-gradient(135deg, #0A2E4A 0%, #0A2E4A 70%, #FFC107 100%); /* Adjusted gradient for better brand color emphasis */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-gdpr__hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__hero-image-wrapper {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__content-section {
  padding: 60px 20px;
}

.page-gdpr__content-section.page-gdpr__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-gdpr__content-section.page-gdpr__dark-bg {
  background-color: #0A2E4A;
  color: #ffffff;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit color from section */
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: inherit;
}

.page-gdpr__paragraph {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: inherit;
}

.page-gdpr__image-container {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__link-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__link-item {
  margin-bottom: 10px;
  font-size: 16px;
  color: inherit;
}

.page-gdpr__link {
  color: #FFC107; /* Auxiliary color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #f7a100; /* Slightly darker gold on hover */
}

/* FAQ Styles */
.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Darker background for FAQ */
  color: #ffffff;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2E4A; /* Primary color for question background */
  border: 1px solid #0A2E4A;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: #143e62;
  border-color: #143e62;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFC107; /* Auxiliary color for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  transform: rotate(45deg); /* Change to 'x' or rotate for '−' */
  color: #ffffff;
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1a1a1a; /* Match section background */
  color: #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Call to Action Section */
.page-gdpr__cta-section {
  padding: 80px 20px;
  background: linear-gradient(90deg, #0A2E4A, #1a1a1a);
  text-align: center;
  color: #ffffff;
}

.page-gdpr__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFC107;
}

.page-gdpr__cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #FFC107;
  color: #0A2E4A;
  border: 2px solid #FFC107;
}

.page-gdpr__btn-primary:hover {
  background-color: #f7a100;
  border-color: #f7a100;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

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

.page-gdpr__btn-secondary:hover {
  background-color: #FFC107;
  color: #0A2E4A;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

/* Global image responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 36px;
  }
  .page-gdpr__hero-description {
    font-size: 16px;
  }
  .page-gdpr__section-title {
    font-size: 32px;
  }
  .page-gdpr__sub-title {
    font-size: 22px;
  }
  .page-gdpr__paragraph {
    font-size: 15px;
  }
  .page-gdpr__cta-title {
    font-size: 32px;
  }
  .page-gdpr__cta-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding-top: 0 !important; /* Ensure no double padding from shared */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-gdpr__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .page-gdpr__paragraph {
    font-size: 15px;
  }
  .page-gdpr__image-container {
    margin: 30px auto;
  }
  .page-gdpr__link-item {
    font-size: 15px;
  }

  /* FAQ Mobile */
  .page-gdpr__faq-section {
    padding: 40px 15px;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
    margin-left: 15px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }

  /* CTA Mobile */
  .page-gdpr__cta-section {
    padding: 60px 15px;
  }
  .page-gdpr__cta-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-gdpr__cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-gdpr__container,
  .page-gdpr__cta-content {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__content-section.page-gdpr__light-bg .page-gdpr__container,
  .page-gdpr__content-section.page-gdpr__dark-bg .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}