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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary color */
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button color */
  color: #ffffff; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

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

.page-gdpr__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #F2FFF6;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #2E7A4E; /* Custom Border color */
  padding-bottom: 10px;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: #A7D9B8;
}

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
}

.page-gdpr__image--right {
  float: right;
  max-width: 400px;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--left {
  float: left;
  max-width: 400px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-gdpr__contact-info {
  background-color: #11271B; /* Custom Card BG color */
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  border: 1px solid #2E7A4E;
  clear: both;
}

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

.page-gdpr__contact-item strong {
  color: #57E38D; /* Custom Glow color */
}

.page-gdpr__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #0A4B2C; /* Custom Deep Green color */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-title {
  font-size: 2.2em;
  color: #F2C14E; /* Custom Gold color */
  margin-bottom: 15px;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

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

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

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
  list-style: none; /* Remove default marker */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit */
}

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

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

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

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

.page-gdpr__brand-showcase {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__brand-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

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

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

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 25px auto;
    max-width: 600px;
  }
}

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

  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

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

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-gdpr__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
  }

  .page-gdpr__content-area,
  .page-gdpr__faq-section,
  .page-gdpr__brand-showcase {
    padding: 20px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

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

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__image {
    margin: 20px auto;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    max-width: 100% !important;
    width: 100% !important;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .page-gdpr__cta-section {
    margin-top: 40px;
    padding: 30px 15px;
  }

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

  .page-gdpr__cta-description {
    font-size: 1em;
  }

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

  /* All containers with images/content */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__cta-section,
  .page-gdpr__faq-section,
  .page-gdpr__brand-showcase {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Mobile button responsiveness */
  .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;
    margin-bottom: 10px; /* Space between stacked buttons */
  }

  /* Button containers mobile adaptation */
  .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-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }
}