.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#000000) */
}

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

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0A2463; /* Primary brand color */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #E0B34C; /* Secondary brand color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-button {
  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;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #E0B34C; /* Secondary brand color */
  color: #0A2463; /* Primary brand color for text */
  border: 2px solid #E0B34C;
}

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

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #E0B34C; /* Secondary brand color */
  border: 2px solid #E0B34C;
}

.page-gdpr__btn-secondary:hover {
  background-color: #E0B34C;
  color: #0A2463;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #000000; /* Dark background from body */
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-gdpr__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #E0B34C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #E0B34C;
}

.page-gdpr__text-block {
  margin-bottom: 30px;
  font-size: 1.05em;
  color: #f0f0f0;
}

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

.page-gdpr__text-block a {
  color: #E0B34C;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__text-block a:hover {
  text-decoration: underline;
}

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

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #E0B34C;
  font-weight: bold;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

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

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

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #0A2463;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-question:hover {
  background-color: #0C2E78;
}

.page-gdpr__faq-title {
  margin: 0;
  font-size: 1.2em;
  color: #E0B34C;
}

.page-gdpr__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #E0B34C;
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-gdpr__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-gdpr__additional-terms-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description,
  .page-gdpr__text-block p,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer p {
    font-size: 1em;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

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

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

  .page-gdpr__cta-button {
    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__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__content-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section,
  .page-gdpr__additional-terms-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
}