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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 1920px;
  margin: 0 auto;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Adjust to pull content up over the image slightly without overlapping text */
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main); /* F2FFF6 */
  margin-bottom: 20px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary); /* A7D9B8 */
  margin-bottom: 30px;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

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

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

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-main); /* F2FFF6 */
  border: 2px solid var(--border); /* 2E7A4E */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border color with transparency */
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__dark-section {
  background-color: var(--card-bg); /* 11271B */
  color: var(--text-main); /* F2FFF6 */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text-main); /* F2FFF6 */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: var(--text-secondary); /* A7D9B8 */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__text-block p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-secondary); /* A7D9B8 */
}

.page-gdpr__text-block p a {
  color: var(--glow); /* 57E38D */
  text-decoration: none;
  font-weight: 600;
}

.page-gdpr__text-block p a:hover {
  text-decoration: underline;
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 1000px; /* Example max-width for content images */
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: var(--card-bg); /* 11271B */
  border: 1px solid var(--border); /* 2E7A4E */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-secondary); /* A7D9B8 */
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--text-main); /* F2FFF6 */
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.page-gdpr__list-item {
  background-color: rgba(17, 39, 27, 0.6); /* Slightly lighter card BG */
  border: 1px solid var(--divider); /* 1E3A2A */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-title {
  font-size: 1.6em;
  color: var(--text-main); /* F2FFF6 */
  margin-bottom: 15px;
}

.page-gdpr__list-text {
  color: var(--text-secondary); /* A7D9B8 */
  font-size: 1.0em;
}

.page-gdpr__contact-info {
  background-color: var(--card-bg); /* 11271B */
  border: 1px solid var(--border); /* 2E7A4E */
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  color: var(--text-secondary); /* A7D9B8 */
  margin-bottom: 15px;
}

.page-gdpr__contact-info strong {
  color: var(--text-main); /* F2FFF6 */
}

.page-gdpr__contact-link {
  color: var(--glow); /* 57E38D */
  text-decoration: none;
  font-weight: 600;
}

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

.page-gdpr__image-center {
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  height: auto;
}

.page-gdpr__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__faq-item {
  background-color: var(--card-bg); /* 11271B */
  border: 1px solid var(--border); /* 2E7A4E */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-main); /* F2FFF6 */
  background-color: rgba(17, 39, 27, 0.8); /* Slightly darker for question */
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(17, 39, 27, 1);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: var(--deep-green); /* 0A4B2C */
  color: var(--text-main);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow); /* 57E38D */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.0em;
  color: var(--text-secondary); /* A7D9B8 */
  line-height: 1.6;
}

.page-gdpr__faq-item details > summary {
  list-style: none;
}

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

.page-gdpr__cta-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background-color: var(--deep-green); /* 0A4B2C */
}

.page-gdpr__cta-bottom .page-gdpr__section-title {
  color: var(--text-main); /* F2FFF6 */
}

.page-gdpr__cta-bottom .page-gdpr__section-description {
  color: var(--text-secondary); /* A7D9B8 */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -80px;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-gdpr__security-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-gdpr__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-gdpr__text-block p {
    font-size: 0.95em;
  }
  .page-gdpr__image-full-width,
  .page-gdpr__image-center {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
    box-sizing: border-box !important;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__security-list {
    gap: 20px;
  }
  .page-gdpr__list-title {
    font-size: 1.4em;
  }
  .page-gdpr__contact-info {
    padding: 30px 20px;
    margin: 30px auto;
  }
  .page-gdpr__contact-info p {
    font-size: 1em;
  }
  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 18px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 18px;
  }
  .page-gdpr__cta-bottom {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /* Ensure all content containers are responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__rights-grid,
  .page-gdpr__security-list,
  .page-gdpr__contact-info,
  .page-gdpr__faq-list,
  .page-gdpr__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
}