/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Assuming body background is light */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #26A9E0; /* Brand primary color for hero background */
  color: #ffffff; /* White text on brand blue background */
}

.page-gdpr__hero-content {
  max-width: 900px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: inherit; /* Inherits #ffffff from hero-section */
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin-bottom: 30px;
  color: inherit;
}

.page-gdpr__hero-cta {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: none;
}

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

.page-gdpr__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Content Sections */
.page-gdpr__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__section--dark {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit from section, #333333 or #ffffff */
}

.page-gdpr__section-subtitle {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-gdpr__list li {
  margin-bottom: 0.5em;
}

.page-gdpr__image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-gdpr__image-content-wrapper {
  width: 100%;
  max-width: 800px;
}

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

/* FAQ Section */
.page-gdpr__faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f5f5f5; /* Light gray background for FAQ */
  color: #333333;
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #ffffff;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-gdpr__faq-question {
  flex-grow: 1;
  color: #26A9E0; /* Brand color for questions */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-gdpr__faq-answer {
  padding: 10px 20px 20px;
  line-height: 1.6;
  color: #555555;
}

/* Call to Action */
.page-gdpr__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-gdpr__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-gdpr__main-title {
    font-size: 2em; /* Adjust H1 for mobile */
  }

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

  .page-gdpr__hero-cta,
  .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-image,
  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-gdpr__section-subtitle {
    font-size: 1.3em;
  }

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all buttons are responsive */
  .page-gdpr a[class*="btn"],
  .page-gdpr a[class*="button"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px;
  }

  .page-gdpr__cta-text {
    font-size: 1.5em;
  }
}