/* style/gdpr.css */
:root {
  --page-gdpr-primary-color: #11A84E;
  --page-gdpr-secondary-color: #22C768;
  --page-gdpr-background-color: #08160F;
  --page-gdpr-card-bg-color: #11271B;
  --page-gdpr-text-main-color: #F2FFF6;
  --page-gdpr-text-secondary-color: #A7D9B8;
  --page-gdpr-border-color: #2E7A4E;
  --page-gdpr-glow-color: #57E38D;
  --page-gdpr-gold-color: #F2C14E;
  --page-gdpr-divider-color: #1E3A2A;
  --page-gdpr-deep-green-color: #0A4B2C;
  --page-gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default for light body background */
  background-color: #ffffff; /* Assuming default light body background */
}

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

.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;
  text-align: center;
  background-color: var(--page-gdpr-background-color);
  color: var(--page-gdpr-text-main-color);
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--page-gdpr-gold-color);
}

.page-gdpr__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--page-gdpr-text-secondary-color);
}

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

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

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

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

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

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--page-gdpr-text-secondary-color);
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

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

.page-gdpr__dark-section {
  background-color: var(--page-gdpr-card-bg-color);
  color: var(--page-gdpr-text-main-color);
  padding: 80px 0;
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  color: inherit;
}

.page-gdpr__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
}

/* Principles Section */
.page-gdpr__principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-gdpr__principle-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Rights Section */
.page-gdpr__rights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-gdpr__right-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--page-gdpr-deep-green-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__right-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-gdpr__right-icon {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-gdpr__right-content {
  text-align: left;
}

/* Security Section */
.page-gdpr__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-gdpr__feature-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Requests Section */
.page-gdpr__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__step-card {
  background-color: var(--page-gdpr-deep-green-color);
  color: var(--page-gdpr-text-main-color);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__step-card a {
  color: var(--page-gdpr-gold-color);
  text-decoration: underline;
}

.page-gdpr__step-card a:hover {
  color: #ffffff;
}

.page-gdpr__final-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--page-gdpr-text-secondary-color);
}

.page-gdpr__final-note a {
  color: var(--page-gdpr-gold-color);
  text-decoration: underline;
}

.page-gdpr__final-note a:hover {
  color: #ffffff;
}

/* Contact Section */
.page-gdpr__contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.page-gdpr__contact-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-details {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-gdpr__contact-details p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333333;
}

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

.page-gdpr__contact-details li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #333333;
}

.page-gdpr__contact-details li a {
  color: var(--page-gdpr-primary-color);
  text-decoration: none;
  font-weight: 600;
}

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

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

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-deep-green-color);
  color: var(--page-gdpr-text-main-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--page-gdpr-border-color);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* For details/summary */
  color: var(--page-gdpr-gold-color);
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

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

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

  .page-gdpr__hero-section,
  .page-gdpr__light-bg,
  .page-gdpr__dark-bg,
  .page-gdpr__dark-section {
    padding: 40px 0;
  }

  .page-gdpr__main-title {
    font-size: 2rem;
  }

  .page-gdpr__intro-text {
    font-size: 1rem;
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-gdpr__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-gdpr__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-gdpr__principles-grid,
  .page-gdpr__security-features,
  .page-gdpr__process-steps {
    grid-template-columns: 1fr;
  }

  .page-gdpr__principle-image,
  .page-gdpr__feature-image {
    height: 180px;
  }

  .page-gdpr__right-item {
    flex-direction: column !important;
    text-align: center;
  }

  .page-gdpr__right-icon {
    width: 100%;
    max-width: 300px;
    height: 150px;
    margin-bottom: 15px;
  }

  .page-gdpr__right-content {
    text-align: center;
  }

  .page-gdpr__contact-info {
    flex-direction: column;
  }

  .page-gdpr__contact-image {
    max-width: 100%;
  }

  .page-gdpr__contact-details {
    min-width: unset;
    width: 100%;
    text-align: center;
  }
  
  .page-gdpr__contact-details p,
  .page-gdpr__contact-details li {
    font-size: 1rem;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px 20px;
  }

  /* Mobile image and video responsiveness */
  .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__hero-image-wrapper,
  .page-gdpr__contact-info,
  .page-gdpr__cta-buttons,
  .page-gdpr__rights-list,
  .page-gdpr__principles-grid,
  .page-gdpr__security-features,
  .page-gdpr__process-steps,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-gdpr__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__right-item:nth-child(even) {
    flex-direction: column !important;
  }
}