/* style/gdpr.css */

/* Custom Colors */
:root {
  --page-gdpr-background: #08160F;
  --page-gdpr-card-bg: #11271B;
  --page-gdpr-text-main: #F2FFF6;
  --page-gdpr-text-secondary: #A7D9B8;
  --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-gdpr-border: #2E7A4E;
  --page-gdpr-glow: #57E38D;
  --page-gdpr-gold: #F2C14E;
  --page-gdpr-divider: #1E3A2A;
  --page-gdpr-deep-green: #0A4B2C;
}

.page-gdpr {
  background-color: var(--page-gdpr-background);
  color: var(--page-gdpr-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--page-gdpr-background);
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

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

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

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

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--page-gdpr-glow);
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--page-gdpr-text-main);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-gdpr__text-block a {
  color: var(--page-gdpr-glow);
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: var(--page-gdpr-gold);
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Data Collection & Protection Sections */
.page-gdpr__intro-section,
.page-gdpr__data-collection-section,
.page-gdpr__data-protection-section,
.page-gdpr__user-rights-section,
.page-gdpr__data-retention-section,
.page-gdpr__cookies-section,
.page-gdpr__contact-section,
.page-gdpr__faq-section {
  padding: 40px 0;
  background-color: var(--page-gdpr-background);
}

.page-gdpr__data-list,
.page-gdpr__protection-list,
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-gdpr__data-item,
.page-gdpr__protection-item,
.page-gdpr__rights-item {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__data-subtitle,
.page-gdpr__protection-subtitle,
.page-gdpr__rights-subtitle {
  font-size: 1.5em;
  color: var(--page-gdpr-text-main);
  margin-bottom: 10px;
}

.page-gdpr__data-item p,
.page-gdpr__protection-item p,
.page-gdpr__rights-item p {
  color: var(--page-gdpr-text-secondary);
  font-size: 1em;
}

.page-gdpr__contact-info {
  text-align: center;
  margin: 30px 0;
  font-size: 1.1em;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__contact-info a {
  color: var(--page-gdpr-glow);
  text-decoration: none;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

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

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

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

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

.page-gdpr__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-gdpr-glow);
}

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

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

.page-gdpr__faq-answer p {
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

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

  .page-gdpr__data-subtitle,
  .page-gdpr__protection-subtitle,
  .page-gdpr__rights-subtitle {
    font-size: 1.3em;
  }

  .page-gdpr__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }

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

  /* Mobile responsive images/videos/buttons - forced */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__intro-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__data-protection-section,
  .page-gdpr__user-rights-section,
  .page-gdpr__data-retention-section,
  .page-gdpr__cookies-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__video-section { /* Although no video is here, keeping the rule for safety */
    padding-top: 10px !important;
  }
}