.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height of the image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: 40px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-gdpr__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-gdpr__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #22C768;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image {
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__image--left {
  width: 45%;
  margin-right: 20px;
}

.page-gdpr__image--center {
  display: block;
  margin: 40px auto;
  width: 60%;
}

.page-gdpr__image--right {
  width: 45%;
  margin-left: 20px;
}

.page-gdpr__text-content {
  flex-grow: 1;
}

.page-gdpr__rights-list,
.page-gdpr__data-types-list,
.page-gdpr__purpose-list,
.page-gdpr__security-list,
.page-gdpr__retention-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-gdpr__rights-item,
.page-gdpr__data-type-item,
.page-gdpr__purpose-item,
.page-gdpr__security-item,
.page-gdpr__retention-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__rights-item strong {
  color: #F2FFF6;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__contact-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-gdpr__link {
  color: #2AD16F;
  text-decoration: none;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

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

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

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D;
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8;
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__image-text-block {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__image-text-block--reverse {
    flex-direction: column;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .page-gdpr__image--center {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

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

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

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }

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

  .page-gdpr__rights-list,
  .page-gdpr__data-types-list,
  .page-gdpr__purpose-list,
  .page-gdpr__security-list,
  .page-gdpr__retention-list {
    margin-left: 15px;
  }

  .page-gdpr__rights-item,
  .page-gdpr__data-type-item,
  .page-gdpr__purpose-item,
  .page-gdpr__security-item,
  .page-gdpr__retention-item {
    font-size: 0.95rem;
  }

  .page-gdpr__image--center {
    width: 100%;
  }

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

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

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

  .page-gdpr__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 1.1rem !important;
  }
  
  .page-gdpr__btn-primary--large {
    font-size: 1.1rem !important;
    padding: 15px 20px !important;
  }

  /* Force responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__image-text-block,
  .page-gdpr__text-content,
  .page-gdpr__faq-list,
  .page-gdpr__cta-section,
  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure content does not overflow */
  }
  
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}