/* 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-btn-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;
}

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

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative top padding */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  text-align: center;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  color: var(--page-gdpr-text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: var(--page-gdpr-btn-gradient);
  color: var(--page-gdpr-text-main);
  border: none;
}

.page-gdpr__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px var(--page-gdpr-glow-color);
}

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

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

/* General Sections */
.page-gdpr__section {
  padding: 80px 20px;
  border-bottom: 1px solid var(--page-gdpr-divider-color);
}

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

.page-gdpr__section--dark {
  background-color: var(--page-gdpr-card-bg);
}

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

.page-gdpr__container--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__container--reverse {
  grid-template-areas: "image content";
}

.page-gdpr__container--reverse .page-gdpr__image-wrapper {
  grid-area: image;
}

.page-gdpr__container--reverse .page-gdpr__content-block {
  grid-area: content;
}

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

.page-gdpr__sub-title {
  color: var(--page-gdpr-text-main);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block {
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 20px;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

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

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: var(--page-gdpr-glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr__list--columns .page-gdpr__list-item {
  background-color: var(--page-gdpr-deep-green);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--page-gdpr-border-color);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list--columns .page-gdpr__list-item h3 {
  color: var(--page-gdpr-glow-color);
  margin-top: 0;
  font-size: 1.2em;
}

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

.page-gdpr__card {
  background-color: var(--page-gdpr-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-gdpr-border-color);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__card-title {
  color: var(--page-gdpr-glow-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

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

.page-gdpr__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__feature-card {
  background-color: var(--page-gdpr-deep-green);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--page-gdpr-border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__feature-card .page-gdpr__card-title {
  color: var(--page-gdpr-gold-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-gdpr__feature-card p {
  color: var(--page-gdpr-text-secondary);
}

/* FAQ Section */
.page-gdpr__section--faq {
  padding-bottom: 100px;
}

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

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-deep-green);
  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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--page-gdpr-text-main);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* var(--page-gdpr-border-color) with opacity */
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__container--grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__container--reverse {
    grid-template-areas: unset;
  }
  .page-gdpr__hero-content {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-gdpr__hero-content {
    padding: 15px;
    width: 95%;
  }
  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 25px;
    max-width: 100%;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100%;
    padding: 12px 15px;
  }
  .page-gdpr__section {
    padding: 60px 15px;
  }
  .page-gdpr__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-gdpr__list--columns {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card-grid,
  .page-gdpr__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile image, video, button adaptations */
  .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-wrapper,
  .page-gdpr__content-block,
  .page-gdpr__cta-buttons,
  .page-gdpr__btn-container,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-gdpr__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-gdpr__hero-image-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-gdpr__text-block, .page-gdpr__list-item p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-content {
    padding: 10px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    font-size: 0.9em;
  }
}