.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 120px; /* Adjusted for fixed header on desktop */
  margin-top: 0;
  background: linear-gradient(135deg, #0A246A, #E7C641);
  color: #ffffff;
  text-align: center;
}

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

.page-gdpr__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-gdpr__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E7C641;
  color: #0A246A;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__hero-button:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  width: 100%;
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background for default section */
  color: #333333;
}

.page-gdpr__dark-bg {
  background-color: #0A246A; /* Main brand color for dark sections */
  color: #ffffff;
}

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

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: inherit; /* Inherit color from parent section */
}

.page-gdpr__text-block {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: inherit;
}

.page-gdpr__text-block h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-gdpr__link {
  color: #E7C641; /* Auxiliary brand color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

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

.page-gdpr__image-centered {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
  color: inherit;
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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 15px;
  opacity: 0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer in dark section */
  border-radius: 0 0 5px 5px;
  color: inherit;
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__faq-item.active .page-gdpr__faq-answer {
  background: #f9f9f9;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1); /* Darker background for question in dark section */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: inherit;
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__faq-question {
  background: #fff;
  border: 1px solid #e0e0e0;
}

.page-gdpr__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-gdpr__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__faq-question:active {
  background: #eeeeee;
}

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

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E7C641;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__faq-toggle {
  color: #0A246A;
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #0A246A;
  transform: rotate(45deg);
}

/* Contact Section */
.page-gdpr__contact-section {
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__contact-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: inherit;
}

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

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

.page-gdpr__contact-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E7C641;
  color: #0A246A;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__contact-button:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 38px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px; /* Adjusted for fixed header on mobile */
    padding-bottom: 40px;
  }

  .page-gdpr__hero-title {
    font-size: 32px;
  }

  .page-gdpr__hero-description {
    font-size: 16px;
  }

  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-gdpr__text-block {
    font-size: 15px;
  }

  .page-gdpr__text-block h3 {
    font-size: 20px;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__list-item {
    margin-bottom: 8px;
  }

  .page-gdpr__image-full-width,
  .page-gdpr__image-centered {
    margin: 20px 0;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-gdpr__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

  .page-gdpr__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 15px;
  }

  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }

  .page-gdpr__contact-section {
    padding: 60px 0;
  }

  .page-gdpr__contact-description,
  .page-gdpr__contact-item {
    font-size: 16px;
  }

  .page-gdpr__contact-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}