.page-gdpr {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-color: #1a1a1a;
  border-bottom: 2px solid #8B0000;
  padding-top: var(--header-offset, 120px); /* Shared might not set body padding-top, so ensure this page does */
}

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

.page-gdpr__hero-title {
  font-size: 42px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-cta-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #8B0000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-cta-button:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  color: #121212;
  transform: translateY(-3px);
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #121212;
}

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

.page-gdpr__introduction,
.page-gdpr__data-collection,
.page-gdpr__your-rights,
.page-gdpr__security-measures,
.page-gdpr__third-party-sharing,
.page-gdpr__data-retention,
.page-gdpr__contact-complaints,
.page-gdpr__policy-updates {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
}

.page-gdpr__section-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-gdpr p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 15px;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-gdpr__list li strong {
  color: #FFD700;
}

.page-gdpr__call-to-action-bottom {
  text-align: center;
  margin-top: 50px;
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #333333;
}

.page-gdpr__call-to-action-bottom p {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-gdpr__cta-button--bottom {
  background-color: #FFD700;
  color: #121212;
  border-color: #FFD700;
}

.page-gdpr__cta-button--bottom:hover {
  background-color: #8B0000;
  border-color: #8B0000;
  color: #ffffff;
}

.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: #121212;
}

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

.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 30px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 5px 5px;
  color: #e0e0e0;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: #2a2a2a;
  border-color: #444444;
}

.page-gdpr__faq-question:active {
  background: #333333;
}

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

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #8B0000;
  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: 32px;
  height: 32px;
}

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

/* General image and button responsive rules for mobile */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__cta-button,
.page-gdpr__hero-cta-button,
.page-gdpr a[class*="button"],
.page-gdpr a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__button-group,
.page-gdpr__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 100px); /* Adjust for mobile header offset */
  }

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

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

  .page-gdpr__hero-cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
  }

  .page-gdpr__content-section,
  .page-gdpr__faq-section {
    padding: 40px 15px;
  }

  .page-gdpr__introduction,
  .page-gdpr__data-collection,
  .page-gdpr__your-rights,
  .page-gdpr__security-measures,
  .page-gdpr__third-party-sharing,
  .page-gdpr__data-retention,
  .page-gdpr__contact-complaints,
  .page-gdpr__policy-updates {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-gdpr__section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .page-gdpr p,
  .page-gdpr__list li {
    font-size: 15px;
  }

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

  .page-gdpr__call-to-action-bottom {
    padding: 30px 20px;
    margin-top: 30px;
  }

  .page-gdpr__call-to-action-bottom p {
    font-size: 17px;
    margin-bottom: 20px;
  }

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

  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }

  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

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

  /* Mobile responsive for all images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Mobile responsive for buttons and their containers */
  .page-gdpr__cta-button,
  .page-gdpr__hero-cta-button,
  .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__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;
  }
}