.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f9fa; /* Matches body background */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white for readability */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-50px);
  position: relative;
  z-index: 1;
  border-radius: 8px;
  margin-bottom: -50px;
}

.page-gdpr__main-title {
  color: #0A4B2C; /* Deep Green for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main for button */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A4B2C; /* Deep Green for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Main color */
  border-radius: 2px;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__container--center {
  text-align: center;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

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

.page-gdpr__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 80px 20px;
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__dark-section .page-gdpr__section-title::after {
  background-color: #22C768; /* Auxiliary color */
}

.page-gdpr__dark-section .page-gdpr__text-block {
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-gdpr__user-rights::after,
.page-gdpr__data-protection-measures::after {
  content: '';
  display: table;
  clear: both;
}

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

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-item[open] {
  background-color: #f0fdf5; /* Light green background when open */
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: bold;
  font-size: 1.1em;
  color: #0A4B2C; /* Deep Green */
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #11A84E; /* Main color */
  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;
  color: #333333;
  font-size: 1em;
}

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

.page-gdpr__contact-cta {
  padding: 80px 20px;
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
}

.page-gdpr__contact-cta .page-gdpr__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__contact-cta .page-gdpr__section-title::after {
  background-color: #57E38D; /* Glow color */
}

.page-gdpr__contact-cta .page-gdpr__text-block {
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button--secondary {
  background: #2E7A4E; /* Border color as background */
  color: #F2FFF6;
  margin-top: 30px;
}

.page-gdpr__cta-button--secondary:hover {
  background: #0A4B2C; /* Deep Green */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 30px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    transform: translateY(-30px);
    margin-bottom: -30px;
  }
  .page-gdpr__main-title {
    font-size: 1.6em;
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__text-block {
    font-size: 0.95em;
  }
  .page-gdpr__image {
    margin-bottom: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  .page-gdpr__dark-section {
    padding: 60px 15px;
  }
  .page-gdpr__contact-cta {
    padding: 60px 15px;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .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;
  }
  .page-gdpr__hero-section .page-gdpr__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}