.page-gdpr {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px;
  position: relative;
  overflow: hidden;
  background: var(--background-color, #08160F);
}

.page-gdpr__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 15px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__intro-section {
  background-color: var(--card-bg, #11271B);
}

.page-gdpr__principles-section {
  background-color: var(--background-color, #08160F);
}

.page-gdpr__rights-section {
  background-color: var(--card-bg, #11271B);
}

.page-gdpr__protection-section {
  background-color: var(--background-color, #08160F);
}

.page-gdpr__contact-section {
  background-color: var(--card-bg, #11271B);
}

.page-gdpr__faq-section {
  background-color: var(--background-color, #08160F);
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold, #F2C14E);
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__keyword {
  color: var(--glow, #57E38D);
  font-weight: bold;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__list-item strong {
  color: var(--text-main, #F2FFF6);
}

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

.page-gdpr__text-link {
  color: var(--glow, #57E38D);
  text-decoration: none;
}

.page-gdpr__text-link:hover {
  text-decoration: underline;
}

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

.page-gdpr__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-gdpr__cta-button--video {
  margin-top: 20px;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  position: relative;
  list-style: none;
}

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

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

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

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

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

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

  .page-gdpr__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page-gdpr__container {
    padding: 0 30px;
  }

  .page-gdpr__hero-section {
    padding: 10px 30px 80px;
  }

  .page-gdpr__section {
    padding: 80px 30px;
  }
}

/* Contrast Fixes */
.page-gdpr__dark-bg {
  color: #F2FFF6; /* Light text on dark background */
}

.page-gdpr__light-bg {
  color: #333333; /* Dark text on light background (not used directly here, but for reference) */
}

.page-gdpr__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}