/* style/gdpr.css */
:root {
  --page-gdpr-primary-color: #11A84E;
  --page-gdpr-secondary-color: #22C768;
  --page-gdpr-background-color: #08160F;
  --page-gdpr-card-bg: #11271B;
  --page-gdpr-text-main: #F2FFF6;
  --page-gdpr-text-secondary: #A7D9B8;
  --page-gdpr-border-color: #2E7A4E;
  --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-main); /* Default text color for the page */
  background-color: var(--page-gdpr-background-color); /* Body background handled by shared.css var(--background-color) */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  background-color: var(--page-gdpr-background-color);
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-gdpr-text-main);
  margin-bottom: 20px;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-gdpr__description-text {
  font-size: 1.1em;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 30px;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--page-gdpr-button-gradient);
  color: var(--page-gdpr-text-main);
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--page-gdpr-primary-color);
  border: 2px solid var(--page-gdpr-primary-color);
}

.page-gdpr__btn-secondary:hover {
  background: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__content-section {
  padding: 80px 20px;
}

.page-gdpr__content-section.page-gdpr__dark-bg {
  background-color: var(--page-gdpr-background-color);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__content-section.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__content-section.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__content-section.page-gdpr__light-bg .page-gdpr__subsection-title {
  color: #111111;
}

.page-gdpr__content-section.page-gdpr__light-bg .page-gdpr__text-link {
  color: var(--page-gdpr-primary-color);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-gdpr-text-main);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--page-gdpr-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__text-block {
  font-size: 1em;
  margin-bottom: 15px;
  color: inherit; /* Inherits from section for contrast */
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 400px;
}

.page-gdpr__link-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__link-item {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.6;
  color: inherit;
}

.page-gdpr__text-link {
  color: var(--page-gdpr-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: var(--page-gdpr-secondary-color);
  text-decoration: underline;
}

.page-gdpr__cta-buttons--center {
  margin-top: 40px;
  justify-content: center;
}

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

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--page-gdpr-text-main);
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 10px;
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: var(--page-gdpr-text-secondary);
}

.page-gdpr__last-section {
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.5em;
  }
  .page-gdpr__image--right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-gdpr__description-text {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
  }
  .page-gdpr__text-block,
  .page-gdpr__link-item,
  .page-gdpr__faq-item summary,
  .page-gdpr__faq-answer {
    font-size: 0.95em;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-section,
  .page-gdpr__container,
  .page-gdpr__card,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}