.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Custom background color */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-width: 1200px; /* Max width for desktop image */
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content-area {
  max-width: 900px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #E53935; /* Brand color for H1 */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.6);
}

.page-gdpr__cta-button--secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: none;
  margin-top: 20px;
}

.page-gdpr__cta-button--secondary:hover {
  background: #E53935;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-gdpr__content-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.page-gdpr__section-title {
  color: #E53935; /* Brand color for H2 */
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #FF5A4F;
  padding-bottom: 10px;
}

.page-gdpr__text-block {
  margin-bottom: 15px;
  color: #333333; /* Text Main */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #333333; /* Text Main */
}

.page-gdpr__list-item {
  margin-bottom: 8px;
  color: #333333; /* Text Main */
}

.page-gdpr__list-item strong {
  color: #E53935;
}

.page-gdpr a {
  color: #E53935;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FF5A4F;
}

.page-gdpr__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

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

.page-gdpr__faq-item {
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  color: #333333;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #F5F7FA;
  cursor: pointer;
  list-style: none;
  color: #E53935;
  font-weight: bold;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #FF5A4F;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  color: #E53935;
}

.page-gdpr__faq-answer {
  padding: 15px 20px;
  background-color: #ffffff;
  border-top: 1px solid #E0E0E0;
  color: #333333;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 20px;
  }

  .page-gdpr__hero-image-container {
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain; /* Ensure image is fully visible, not cropped */
  }

  .page-gdpr__hero-content-area {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: 1.8em; /* Adjust H1 size for mobile */
    margin-bottom: 15px;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* Buttons */
  .page-gdpr__cta-button,
  .page-gdpr__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  /* Content Sections */
  .page-gdpr__content-section,
  .page-gdpr__faq-section {
    margin: 20px auto;
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
  }

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

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

  /* Images in content */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* FAQ Section */
  .page-gdpr__faq-item summary {
    padding: 12px 15px;
  }

  .page-gdpr__faq-answer {
    padding: 12px 15px;
  }

  .page-gdpr__faq-qtext {
    font-size: 1em;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.2em;
  }
}