/* style/gdpr.css */

:root {
  --page-gdpr-primary-color: #2F6BFF;
  --page-gdpr-secondary-color: #6FA3FF;
  --page-gdpr-text-main: #1F2D3D;
  --page-gdpr-text-dark: #000000;
  --page-gdpr-card-bg: #FFFFFF;
  --page-gdpr-background: #F4F7FB;
  --page-gdpr-border: #D6E2FF;
  --page-gdpr-glow: #A5C4FF;
  --page-gdpr-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--page-gdpr-text-main); /* Default text color for the page */
  background-color: var(--background-color, var(--page-gdpr-background)); /* Inherit from shared or use fallback */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as per instruction */
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--page-gdpr-background);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--page-gdpr-text-dark);
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--page-gdpr-text-main);
}

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

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-gdpr-border);
}

.page-gdpr__content-section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.2em);
  font-weight: 700;
  color: var(--page-gdpr-text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list-item {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-gdpr__dark-section {
  background-color: var(--page-gdpr-primary-color);
  color: #ffffff; /* Forced white text for dark background */
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__paragraph,
.page-gdpr__dark-section .page-gdpr__list-item {
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: var(--page-gdpr-card-bg);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__contact-info {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__contact-detail {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__last-updated {
  text-align: right;
  font-style: italic;
  font-size: 0.9em;
  color: var(--page-gdpr-text-main);
  margin-top: 40px;
}

.page-gdpr__cta-section {
  background-color: var(--page-gdpr-secondary-color);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-gdpr__cta-title {
  font-size: clamp(2em, 4vw, 2.5em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: var(--page-gdpr-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

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

  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

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

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

  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-gdpr__cta-section {
    padding: 50px 15px;
  }

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

  .page-gdpr__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Buttons */
  .page-gdpr__btn-primary,
  .page-gdpr__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 1em !important;
  }

  /* No specific product display area on GDPR page, but general image/container rules apply */
  /* Other content modules - handled by general font-size and padding adjustments */
}

/* No specific product display area for GDPR page. */