.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f8f8; /* Slightly off-white for contrast */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Main text color */
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: center;
  font-size: clamp(2em, 4vw, 3.5em);
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  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__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2FFF6;
}

.page-gdpr__text-block {
  font-size: 1em;
  margin-bottom: 25px;
  text-align: justify;
  color: #A7D9B8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__principles-grid, .page-gdpr__security-grid, .page-gdpr__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__card {
  background-color: #11271B; /* Card BG color */
  color: #F2FFF6; /* Main text color for card */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #A7D9B8;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 800px;
  object-fit: cover;
}

.page-gdpr__rights-section {
  background-color: #f8f8f8;
  color: #333333;
  padding: 60px 0;
}

.page-gdpr__rights-section .page-gdpr__section-title {
  color: #11A84E;
}

.page-gdpr__rights-section .page-gdpr__text-block {
  color: #555555;
}

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

.page-gdpr__rights-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #11A84E;
}

.page-gdpr__rights-title {
  font-size: 1.3em;
  color: #11A84E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__rights-text {
  font-size: 0.9em;
  line-height: 1.5;
  color: #555555;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-top: 15px;
  padding-left: 0;
  color: #A7D9B8;
}

.page-gdpr__list li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-gdpr__security-measures-section {
  background-color: #f0f0f0;
  color: #333333;
  padding: 60px 0;
}

.page-gdpr__security-measures-section .page-gdpr__section-title {
  color: #13994A;
}

.page-gdpr__security-measures-section .page-gdpr__text-block {
  color: #555555;
}

.page-gdpr__light-bg {
  background-color: #ffffff; /* Explicitly white background for contrast */
  color: #333333; /* Dark text for light background */
  border: 1px solid #e0e0e0; /* Add border for definition */
}

.page-gdpr__light-bg .page-gdpr__card-title {
  color: #11A84E;
}

.page-gdpr__light-bg .page-gdpr__card-text {
  color: #555555;
}

.page-gdpr__contact-details {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #11271B;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  text-align: left;
  color: #F2FFF6;
}

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

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

.page-gdpr__contact-button {
  margin-top: 30px;
}

.page-gdpr__faq-section {
  background-color: #f8f8f8;
  color: #333333;
  padding: 60px 0;
}

.page-gdpr__faq-section .page-gdpr__section-title {
  color: #11A84E;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #11A84E;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: #f0f0f0;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

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

.page-gdpr__faq-answer {
  padding: 15px 25px 25px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  border-top: 1px solid #eee;
}

.page-gdpr__updates-section {
  padding: 60px 0;
}

.page-gdpr__updates-section .page-gdpr__text-block {
  color: #A7D9B8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 4vw, 3em);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.6em, 3vw, 2.2em);
  }
  .page-gdpr__principles-grid, .page-gdpr__security-grid, .page-gdpr__info-grid, .page-gdpr__rights-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-gdpr__hero-content {
    padding: 30px 15px 0;
  }
  .page-gdpr__container {
    padding: 40px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 5vw, 2.5em);
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.4em, 4.5vw, 2em);
  }
  .page-gdpr__text-block {
    font-size: 0.95em;
  }
  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-section .page-gdpr__btn-primary {
    width: auto !important; /* Allow button to shrink if text is short */
    min-width: 200px; /* Ensure minimum size */
  }

  .page-gdpr__principles-grid, .page-gdpr__security-grid, .page-gdpr__info-grid, .page-gdpr__rights-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__container,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__security-measures-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section,
  .page-gdpr__updates-section,
  .page-gdpr__card,
  .page-gdpr__rights-item,
  .page-gdpr__contact-details,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-gdpr__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__contact-details, .page-gdpr__faq-list {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-gdpr__faq-answer {
    padding: 10px 20px 20px;
  }
}