.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-gdpr__section-title {
  font-size: 2em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text-content {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #000000; /* Main brand color for buttons */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__button:hover {
  background-color: #333333;
}

.page-gdpr__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-gdpr__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__right-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__right-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__right-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__rights-image, .page-gdpr__compliance-image, .page-gdpr__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__compliance-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1em;
  line-height: 1.8;
  color: #333333;
}

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

.page-gdpr__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-gdpr__faq-question {
  font-size: 1.15em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-gdpr__faq-answer {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

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

  .page-gdpr__hero-description {
    font-size: 0.95em;
  }

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

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure content images are responsive and don't overflow */
  .page-gdpr__hero-image, .page-gdpr__rights-image, .page-gdpr__compliance-image, .page-gdpr__security-image {
    max-width: 100%;
    height: auto;
  }
}