.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;
  justify-content: center;
  text-align: center;
  padding: 0;
  background-color: #08160F;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent image from being too tall */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

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

.page-gdpr__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #2AD16F; /* Adjusted for contrast */
  text-decoration: none;
  border: 2px solid #2AD16F;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #2AD16F; /* Bright green for accent */
  margin: 15px auto 0;
}

.page-gdpr__sub-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-gdpr__text-block strong {
  color: #F2FFF6;
}

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

.page-gdpr__list-item {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #2AD16F; /* Bright green checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-gdpr__link-button {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: underline;
  margin-top: 10px;
  font-weight: bold;
}

.page-gdpr__link-button:hover {
  color: #2AD16F;
}

.page-gdpr__contact-info {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-gdpr__email-link, .page-gdpr__phone-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-gdpr__email-link:hover, .page-gdpr__phone-link:hover {
  text-decoration: underline;
  color: #2AD16F;
}

.page-gdpr__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-gdpr__faq-section {
  background-color: #11271B; /* Card BG */
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid transparent; /* To prevent double border when open */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom-color: #2E7A4E;
}

.page-gdpr__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-gdpr__faq-answer {
  padding: 15px 20px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #08160F; /* Background */
}

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

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

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

  .page-gdpr__hero-content {
    padding: 30px 15px 40px;
  }

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

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

  .page-gdpr__cta-button,
  .page-gdpr__btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

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

  .page-gdpr__list-item {
    padding-left: 20px;
  }

  .page-gdpr__faq-question {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

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

  /* Image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__container,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-content,
  .page-gdpr__section,
  .page-gdpr__faq-section,
  .page-gdpr__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure images in content area are not too small */
  .page-gdpr__image {
    min-width: unset;
    min-height: unset;
  }
}