/* style/gdpr.css */
/* Body background color is #08160F (dark green) from shared.css */
/* Text colors are #F2FFF6 (Text Main) and #A7D9B8 (Text Secondary) for dark backgrounds */
/* Button gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
/* Card background: #11271B */

.page-gdpr {
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--background, #08160F); /* Ensure consistency with body background */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  box-sizing: border-box;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative; /* Ensure it's above any potential background layers */
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

.page-gdpr__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-gdpr__dark-bg {
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold, #F2C14E);
}

.page-gdpr__dark-bg .page-gdpr__section-title {
  color: var(--gold, #F2C14E);
}

.page-gdpr__light-bg .page-gdpr__section-title {
  color: var(--deep-green, #0A4B2C);
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--glow, #57E38D);
}

.page-gdpr__dark-bg .page-gdpr__sub-title {
  color: var(--glow, #57E38D);
}

.page-gdpr__light-bg .page-gdpr__sub-title {
  color: var(--deep-green, #0A4B2C);
}

.page-gdpr p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: inherit; /* Inherit from parent section */
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-gdpr__list li {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 10px;
  color: inherit;
}

.page-gdpr a {
  color: var(--glow, #57E38D);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: var(--gold, #F2C14E);
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__contact-info a {
  color: var(--glow, #57E38D);
  text-decoration: none;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
  color: var(--gold, #F2C14E);
}

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

.page-gdpr__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--card-bg, #11271B);
  border-bottom: 1px solid var(--divider, #1E3A2A);
  transition: background-color 0.3s ease;
  color: var(--text-main, #F2FFF6);
  list-style: none;
}

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

.page-gdpr__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--glow, #57E38D);
}

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

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__button-spacing {
  margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__sub-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__content-area,
  .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-top: 10px !important;
  }

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

  .page-gdpr__description,
  .page-gdpr p,
  .page-gdpr li,
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    font-size: 1em !important;
    line-height: 1.6 !important;
  }

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

  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}