/* style/gdpr.css */

/* Custom Colors */
:root {
  --page-gdpr-bg: #08160F;
  --page-gdpr-card-bg: #11271B;
  --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;
  --page-gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
  background-color: var(--page-gdpr-bg);
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--page-gdpr-deep-green);
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  color: var(--page-gdpr-text-main);
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__main-title {
  color: var(--page-gdpr-text-main);
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  background: var(--page-gdpr-btn-gradient);
  color: var(--page-gdpr-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--page-gdpr-glow);
  padding: 12px 25px;
  border: 2px solid var(--page-gdpr-glow);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__section-title {
  color: var(--page-gdpr-gold);
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

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

.page-gdpr__highlight {
  color: var(--page-gdpr-glow);
  font-weight: 600;
}

.page-gdpr__link {
  color: var(--page-gdpr-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--page-gdpr-gold);
  text-decoration: underline;
}

.page-gdpr__introduction-section,
.page-gdpr__h11uu-approach,
.page-gdpr__data-processing,
.page-gdpr__data-retention,
.page-gdpr__international-transfers,
.page-gdpr__cookie-policy,
.page-gdpr__faq-section,
.page-gdpr__cta-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--page-gdpr-divider);
}

.page-gdpr__introduction-section {
  background-color: var(--page-gdpr-deep-green);
  color: var(--page-gdpr-text-main);
}

.page-gdpr__what-is-gdpr,
.page-gdpr__your-rights,
.page-gdpr__data-security,
.page-gdpr__contact-us {
  background-color: var(--page-gdpr-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--page-gdpr-divider);
}

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

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

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

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

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--page-gdpr-glow);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-gdpr__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__image-text-block .page-gdpr__list {
  flex: 1;
  max-width: 50%;
}

.page-gdpr__contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-gdpr__contact-item {
  font-size: 1.1em;
  color: var(--page-gdpr-text-main);
}

/* 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: 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;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--page-gdpr-text-main);
  cursor: pointer;
  background-color: var(--page-gdpr-deep-green);
  border-bottom: 1px solid var(--page-gdpr-divider);
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  border-bottom: 1px solid var(--page-gdpr-divider);
}

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

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

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

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

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

/* Details element native styling reset */
.page-gdpr__faq-item > summary {
  list-style: none;
}

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

.page-gdpr__cta-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: var(--page-gdpr-deep-green);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__image-text-block {
    flex-direction: column;
    text-align: center;
  }

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

  .page-gdpr__content-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-gdpr__image-text-block .page-gdpr__list {
    max-width: 100%;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 15px;
  }

  .page-gdpr__btn-primary:last-child,
  .page-gdpr__btn-secondary:last-child {
    margin-bottom: 0;
  }

  .page-gdpr__cta-section .page-gdpr__btn-primary {
    width: auto !important; /* Allow button to size to content if not full width */
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-gdpr__introduction-section,
  .page-gdpr__what-is-gdpr,
  .page-gdpr__h11uu-approach,
  .page-gdpr__your-rights,
  .page-gdpr__data-processing,
  .page-gdpr__data-security,
  .page-gdpr__data-retention,
  .page-gdpr__international-transfers,
  .page-gdpr__cookie-policy,
  .page-gdpr__contact-us,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section {
    padding: 40px 0;
  }

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

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

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-image,
  .page-gdpr__faq-item,
  .page-gdpr__cta-section .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
  }

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

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

  .page-gdpr__contact-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

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