.page-gdpr {
  color: var(--text-main); /* #F2FFF6 */
  background: var(--background); /* #08160F */
  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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-gdpr__content-area {
  padding: 60px 0;
  background: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

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

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__list-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-secondary); /* #A7D9B8 */
}

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

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

.page-gdpr__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 50%;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 50%;
}

.page-gdpr__link {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: var(--glow); /* #57E38D */
  text-decoration: none;
}

.page-gdpr__faq-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider); /* #1E3A2A */
}

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

.page-gdpr__faq-item {
  background: var(--card-b-g); /* #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;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--deep-green) 0%, var(--card-b-g) 100%); /* #0A4B2C to #11271B */
  border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

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

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom: 1px solid var(--border); /* #2E7A4E */
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold); /* #F2C14E */
}

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

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

.page-gdpr__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: var(--card-b-g); /* #11271B */
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 15px;
}

.page-gdpr__cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 10px 15px 10px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--glow); /* #57E38D */
  border: 2px solid var(--glow); /* #57E38D */
}

.page-gdpr__btn-secondary:hover {
  background: var(--glow); /* #57E38D */
  color: var(--deep-green); /* #0A4B2C */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Floating images handling for smaller screens */
@media (max-width: 992px) {
  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

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

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

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

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

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

  .page-gdpr__content-area,
  .page-gdpr__cta-section,
  .page-gdpr__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__cta-title {
    font-size: 1.5rem;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: calc(100% - 30px) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 15px !important;
    display: block !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__cta-section .page-gdpr__btn-primary,
  .page-gdpr__cta-section .page-gdpr__btn-secondary {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  /* Ensure all img containers are responsive */
  .page-gdpr__container,
  .page-gdpr__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

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