.page-gdpr {
  color: #ffffff; /* Dark body background #0d0d0d requires light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background-color: #333333;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text contrast */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E44D26;
  line-height: 1.2;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background: #E44D26;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-gdpr__cta-button:hover {
  background-color: #cf3c1a;
  border-color: #cf3c1a;
}

.page-gdpr__section {
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__section:nth-of-type(odd) {
  background-color: #1a1a1a; /* Slightly lighter than body for subtle distinction */
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #333333;
}

.page-gdpr__dark-section {
  background-color: #E44D26; /* Brand primary color for emphasis */
  color: #ffffff;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #E44D26;
}

.page-gdpr__dark-section .page-gdpr__heading {
  color: #ffffff;
}

.page-gdpr__sub-heading {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #E44D26;
}

.page-gdpr__dark-section .page-gdpr__sub-heading {
  color: #f0f0f0;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: left;
}

.page-gdpr__dark-section .page-gdpr__paragraph {
  color: #ffffff;
}

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

.page-gdpr__ordered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 0 0 20px 0;
  text-align: left;
}

.page-gdpr__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #f0f0f0;
  position: relative;
  padding-left: 30px;
}

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

.page-gdpr__ordered-list .page-gdpr__list-item {
  padding-left: 0;
}

.page-gdpr__ordered-list .page-gdpr__list-item::before {
  content: none;
}

.page-gdpr__dark-section .page-gdpr__list-item {
  color: #ffffff;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info, .page-gdpr__request-process {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: left;
}

.page-gdpr__contact-info .page-gdpr__sub-heading, .page-gdpr__request-process .page-gdpr__sub-heading {
  color: #E44D26;
  margin-top: 0;
}

.page-gdpr__contact-info a {
  color: #E44D26;
  text-decoration: none;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

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

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #E44D26;
  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;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 25px 20px 25px;
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
  color: #f0f0f0;
  font-size: 1.05em;
}

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

  .page-gdpr__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 500px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important; /* Ensure button adapts */
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 50px 15px;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-gdpr__sub-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list-item {
    font-size: 0.95em;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
  }

  .page-gdpr__contact-info,
  .page-gdpr__request-process {
    padding: 20px;
    margin-top: 30px;
  }

  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px 15px 20px;
  }
  
  /* Ensure all image containers are responsive */
  .page-gdpr__container, .page-gdpr__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* If there are any video sections, ensure padding-top is applied */
  .page-gdpr__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  
  /* Ensure general content sections adapt */
  .page-gdpr__section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__heading {
    font-size: 1.5em;
  }

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

  .page-gdpr__paragraph,
  .page-gdpr__list-item,
  .page-gdpr__faq-question {
    font-size: 0.9em;
  }
}