.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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
  text-align: center;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
  background: var(--background-color, #08160F);
}

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

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

.page-gdpr__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__cta-button {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-gdpr__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.page-gdpr__light-bg {
  background-color: #11271B; /* Card B G */
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__heading {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__heading--white {
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__sub-heading {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-gdpr__sub-heading--white {
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__text--white {
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__text--secondary {
  color: var(--text-secondary, #A7D9B8);
}

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

.page-gdpr__card {
  background-color: var(--card-b-g, #11271B);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main, #F2FFF6);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-gdpr__card--dark {
  background-color: var(--card-b-g, #11271B);
  color: var(--text-main, #F2FFF6);
}

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

.page-gdpr__card-title--white {
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
}

.page-gdpr__info-block:nth-child(even) {
  flex-direction: column-reverse; /* Swap image and text for alternating layout */
}

.page-gdpr__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 20px 0;
  object-fit: cover;
}

.page-gdpr__image--right {
  margin-left: auto;
  margin-right: 0;
}

.page-gdpr__image--left {
  margin-right: auto;
  margin-left: 0;
}

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__faq-section {
  background-color: var(--light-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

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

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

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

.page-gdpr__cta-section {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-gdpr__cta-content {
  max-width: 800px;
}

.page-gdpr__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-bottom: 45%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: black;
}

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

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

/* Responsive Design */
@media (min-width: 769px) {
  .page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 80px;
  }

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

  .page-gdpr__heading {
    font-size: clamp(2em, 3.5vw, 3em);
  }

  .page-gdpr__sub-heading {
    font-size: clamp(1.5em, 2.5vw, 2em);
  }

  .page-gdpr__info-block {
    flex-direction: row;
    text-align: left;
    gap: 30px;
  }

  .page-gdpr__info-block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-gdpr__info-block .page-gdpr__image {
    flex-shrink: 0;
    margin: 0;
  }

  .page-gdpr__info-block .page-gdpr__text {
    flex-grow: 1;
  }

  .page-gdpr__image--right {
    margin-left: 30px;
  }

  .page-gdpr__image--left {
    margin-right: 30px;
  }

  .page-gdpr__cta-section {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .page-gdpr__cta-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-gdpr__video-wrapper {
    flex: 1;
  }
}

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

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
  }

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

  .page-gdpr__heading {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-gdpr__sub-heading {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__info-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile video responsiveness */
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !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;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

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

  .page-gdpr__cta-section {
    padding: 60px 15px;
  }

  .page-gdpr__cta-content {
    padding-right: 0;
  }

  .page-gdpr__video-wrapper {
    padding-bottom: 56.25%; /* 16:9 for mobile */
  }
}