.page-gdpr {
  background-color: #08160F;
  color: #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;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Limit height for hero image */
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 100%;
}

.page-gdpr__description {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px #57E38D;
}

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-gdpr__introduction-section,
.page-gdpr__data-protection-section,
.page-gdpr__data-sharing-section,
.page-gdpr__policy-updates-section {
  background-color: #11271B;
}

.page-gdpr__dark-bg {
  background-color: #0A4B2C; /* Deep Green for dark background sections */
  color: #F2FFF6;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #F2FFF6;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-gdpr__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-gdpr__text-link {
  color: #2AD16F;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: #57E38D;
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  max-width: 800px;
  min-width: 200px; /* Enforce min size */
}

.page-gdpr__rights-list,
.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__rights-item,
.page-gdpr__list-item {
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border: 1px solid #2E7A4E;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-gdpr__rights-title,
.page-gdpr__subtitle {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-gdpr__rights-description {
  color: #A7D9B8;
  font-size: 1em;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #2AD16F;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background: #2AD16F;
  box-shadow: 0 0 10px #57E38D;
}

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

.page-gdpr__protection-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-gdpr__card-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-gdpr__card-description {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-gdpr__contact-info {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  color: #A7D9B8;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  background-color: #0A4B2C; /* Darker background for question */
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #13994A;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #F2C14E;
}

.page-gdpr__faq-answer {
  padding: 0 25px;
  color: #A7D9B8;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px 25px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #13994A;
}

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

.page-gdpr__policy-updates-section .page-gdpr__text-block {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }

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

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

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

  .page-gdpr__hero-image {
    max-height: 300px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    max-width: 100% !important;
  }

  .page-gdpr__description {
    font-size: 1em;
  }

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

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

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

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
  }

  .page-gdpr img,
  .page-gdpr__image-content,
  .page-gdpr__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure min size on mobile */
    min-height: 200px !important;
  }

  .page-gdpr__protection-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-gdpr__faq-item[open] .page-gdpr__faq-answer {
    padding: 10px 20px 20px;
  }

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

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
}