/* style/gdpr.css */
:root {
  --page-gdpr-bg-color: #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-color: #2E7A4E;
  --page-gdpr-glow-color: #57E38D;
  --page-gdpr-gold-color: #F2C14E;
  --page-gdpr-divider-color: #1E3A2A;
  --page-gdpr-deep-green: #0A4B2C;
}

.page-gdpr {
  background-color: var(--page-gdpr-bg-color);
  color: var(--page-gdpr-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body already handles padding-top from shared.css */
}

.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

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

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

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

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

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

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

.page-gdpr__hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--page-gdpr-gold-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  color: var(--page-gdpr-text-main);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-gdpr__text-block .page-gdpr__highlight {
  color: var(--page-gdpr-gold-color);
  font-weight: bold;
}

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

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  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: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-gdpr__image-container {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__principles-list, .page-gdpr__security-list, .page-gdpr__process-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

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

.page-gdpr__list-item h3 {
  color: var(--page-gdpr-gold-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list-item p {
  color: var(--page-gdpr-text-secondary);
  font-size: 1em;
  margin-bottom: 0;
}

.page-gdpr__process-list {
  counter-reset: gdpr-step;
}

.page-gdpr__process-list .page-gdpr__list-item {
  position: relative;
  padding-left: 60px;
}

.page-gdpr__process-list .page-gdpr__list-item::before {
  counter-increment: gdpr-step;
  content: counter(gdpr-step);
  position: absolute;
  left: 15px;
  top: 20px;
  background-color: var(--page-gdpr-gold-color);
  color: var(--page-gdpr-bg-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-gdpr__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.page-gdpr__card h3 {
  color: var(--page-gdpr-gold-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__card p {
  color: var(--page-gdpr-text-secondary);
  font-size: 0.95em;
}

.page-gdpr__card--gold {
  border-left: 5px solid var(--page-gdpr-gold-color);
}

.page-gdpr__cta-section {
  background-color: var(--page-gdpr-deep-green);
  padding: 80px 20px;
}

.page-gdpr__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 2.2em;
  color: var(--page-gdpr-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-gdpr-gold-color);
  background-color: var(--page-gdpr-card-bg);
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: rgba(var(--page-gdpr-gold-color-rgb), 0.1);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

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

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

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

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

  .page-gdpr__grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-gdpr__hero-section,
  .page-gdpr__section {
    padding: 40px 15px;
  }

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

  .page-gdpr__hero-description,
  .page-gdpr__text-block,
  .page-gdpr__cta-description,
  .page-gdpr__list-item p,
  .page-gdpr__card p,
  .page-gdpr__faq-answer {
    font-size: 1em;
  }

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

  .page-gdpr__list-item h3,
  .page-gdpr__card h3,
  .page-gdpr__faq-item summary {
    font-size: 1.1em;
  }

  .page-gdpr__image-container {
    margin: 30px auto;
  }

  /* Mobile specific image and video rules */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

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

  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-gdpr__process-list .page-gdpr__list-item {
    padding-left: 50px;
  }

  .page-gdpr__process-list .page-gdpr__list-item::before {
    left: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .page-gdpr__faq-item summary {
    padding: 15px 20px;
  }

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

@media (max-width: 480px) {
  .page-gdpr__hero-section,
  .page-gdpr__section {
    padding: 30px 10px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

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

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

  .page-gdpr__hero-description,
  .page-gdpr__text-block,
  .page-gdpr__cta-description,
  .page-gdpr__list-item p,
  .page-gdpr__card p,
  .page-gdpr__faq-answer {
    font-size: 0.9em;
  }
}