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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Background color for hero */
  color: #F2FFF6; /* Light text for dark background */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height of the image wrapper */
  overflow: hidden;
  position: relative;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7; /* Slightly dim the image for text readability */
}

.page-gdpr__hero-content {
  position: relative; /* Ensure content is above the dimmed image */
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image */
  background-color: rgba(8, 22, 15, 0.8); /* Semi-transparent background for text block */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-size: clamp(2rem, 5vw, 3.2rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
  letter-spacing: 1px;
}

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

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 20px;
}

.page-gdpr__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

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

.page-gdpr__content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #11A84E; /* Primary color for section titles */
}

.page-gdpr__dark-bg .page-gdpr__section-title {
  color: #22C768; /* Auxiliary color for titles on dark background */
}

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-gdpr__list-item strong {
  color: #11A84E; /* Highlight keywords */
}

.page-gdpr__dark-bg .page-gdpr__list-item strong {
  color: #22C768; /* Highlight keywords on dark background */
}

.page-gdpr a {
  color: #11A84E;
  text-decoration: underline;
}

.page-gdpr__dark-bg a {
  color: #22C768;
}

/* Two Column Layout */
.page-gdpr__two-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start; /* Align items to the top */
}

.page-gdpr__two-columns--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-column,
.page-gdpr__image-column {
  flex: 1;
}

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

/* Contact List */
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  background-color: #f8f8f8;
  color: #333333;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: #11A84E; /* Primary color for FAQ questions */
}

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

.page-gdpr__faq-answer {
  padding: 0 20px 15px 20px;
  font-size: 0.95rem;
  color: #555555;
  text-align: justify;
}

/* Hide default details marker */
.page-gdpr__faq-item summary {
  list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

/* CTA Section */
.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #08160F; /* Deep green background */
  color: #F2FFF6;
}

.page-gdpr__cta-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: #11271B; /* Card BG color */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for CTA title */
}

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

.page-gdpr__btn-cta {
  font-size: 1.2rem;
  padding: 15px 30px;
}

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

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

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

.page-gdpr__btn-secondary {
  background: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
}

.page-gdpr__btn-secondary:hover {
  background: #f0f0f0;
  color: #0A4B2C;
  border-color: #0A4B2C;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    margin-top: -50px;
  }

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

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

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__two-columns {
    flex-direction: column;
  }

  .page-gdpr__text-column,
  .page-gdpr__image-column {
    flex: none;
    width: 100%;
  }

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

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

  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__contact-item {
    font-size: 0.95rem;
  }

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

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-container,
  .page-gdpr__cta-box,
  .page-gdpr__faq-list {
    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 {
    padding-top: 10px !important; /* body handles --header-offset, small padding here */
  }

  .page-gdpr__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    margin-top: -30px;
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: 1.8rem;
  }
  .page-gdpr__hero-description {
    font-size: 0.9rem;
  }
  .page-gdpr__section-title {
    font-size: 1.6rem;
  }
  .page-gdpr__cta-title {
    font-size: 1.8rem;
  }
  .page-gdpr__cta-box {
    padding: 25px;
  }
}