/* style/gdpr.css */

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

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

/* Sections */
.page-gdpr__hero-section,
.page-gdpr__commitment-section,
.page-gdpr__what-is-gdpr,
.page-gdpr__principles-section,
.page-gdpr__data-collection-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__data-sharing-section,
.page-gdpr__cookie-policy-section,
.page-gdpr__contact-section,
.page-gdpr__updates-section,
.page-gdpr__faq-section,
.page-gdpr__cta-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

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

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

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

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

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  padding: 0 15px;
}

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

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

/* Titles and Subtitles */
.page-gdpr__section-title {
  color: var(--page-gdpr-text-main);
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: bold;
}

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

/* Paragraphs */
.page-gdpr p {
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 1em;
  font-size: 1.05em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Lists */
.page-gdpr__list,
.page-gdpr__principles-list,
.page-gdpr__rights-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-gdpr__list li,
.page-gdpr__principles-list li,
.page-gdpr__rights-list li,
.page-gdpr__security-list li {
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
}

.page-gdpr__list li::before,
.page-gdpr__principles-list li::before,
.page-gdpr__rights-list li::before,
.page-gdpr__security-list li::before {
  content: '•';
  color: var(--page-gdpr-primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Buttons */
.page-gdpr__btn-primary {
  display: inline-block;
  background: var(--page-gdpr-button-gradient);
  color: var(--page-gdpr-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Links */
.page-gdpr__link {
  color: var(--page-gdpr-secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--page-gdpr-glow);
}

/* Image and Text Layout */
.page-gdpr__image-and-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__image-and-text--reverse {
  flex-direction: column-reverse;
}

.page-gdpr__image-wrapper {
  flex: 1;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  overflow: hidden;
  border-radius: 12px;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-width: 100%; /* Ensure images are responsive */
}

.page-gdpr__text-content {
  flex: 1;
  text-align: left;
}

/* FAQ Section */
.page-gdpr__faq-item {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border);
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-gdpr__image-and-text {
    flex-direction: row;
    text-align: left;
  }

  .page-gdpr__image-and-text--reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

  .page-gdpr__subtitle {
    font-size: 1.5em;
  }

  .page-gdpr__list li,
  .page-gdpr__principles-list li,
  .page-gdpr__rights-list li,
  .page-gdpr__security-list li,
  .page-gdpr p,
  .page-gdpr__faq-answer p {
    font-size: 1em;
  }

  .page-gdpr__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__container,
  .page-gdpr__hero-content,
  .page-gdpr__commitment-section,
  .page-gdpr__what-is-gdpr,
  .page-gdpr__principles-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__data-sharing-section,
  .page-gdpr__cookie-policy-section,
  .page-gdpr__contact-section,
  .page-gdpr__updates-section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__image-and-text {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image-and-text--reverse {
    flex-direction: column;
  }

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

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