.page-gdpr {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over the image for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(17, 40, 27, 0.85); /* Card BG with opacity */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid #1E3A2A;
}

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

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

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

.page-gdpr__heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__sub-heading {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: #22C768;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__content-block {
  background-color: #11271B;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.7;
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  color: #A7D9B8;
}

.page-gdpr__content-block p:last-child {
  margin-bottom: 0;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__image--left {
  float: left;
  margin-right: 25px;
  max-width: 40%;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 25px;
  max-width: 40%;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-gdpr__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #57E38D;
  border-color: #57E38D;
}

.page-gdpr__section--cookie-policy .page-gdpr__description,
.page-gdpr__section--contact .page-gdpr__description {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #A7D9B8;
}

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

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

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

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

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

.page-gdpr__faq-item:not([open]) .page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 2000px; /* Arbitrarily large value for smooth transition */
  transition: max-height 0.5s ease-in;
}

/* Clearfix for floated images */
.page-gdpr__content-block::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 25px;
  }

  .page-gdpr__hero-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }

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

  .page-gdpr__heading {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    max-width: 100%;
    float: none;
    margin: 20px auto;
  }
}

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

  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

  .page-gdpr__hero-content {
    margin-top: -40px;
    padding: 20px;
    border-radius: 8px;
  }

  .page-gdpr__hero-title {
    font-size: clamp(1.6em, 5.5vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-gdpr__container,
  .page-gdpr__content-block {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-gdpr__heading {
    font-size: clamp(1.4em, 4.5vw, 2em);
    margin-bottom: 25px;
  }

  .page-gdpr__sub-heading {
    font-size: clamp(1.2em, 3.5vw, 1.6em);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr__image,
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-gdpr__btn,
  .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; /* Add spacing between stacked buttons */
  }

  .page-gdpr__btn:last-child {
    margin-bottom: 0;
  }

  .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;
    display: flex;
    flex-direction: column;
  }

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

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

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