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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
  background-color: #08160F; /* Ensure background if image doesn't cover fully */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background layers */
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

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

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

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add some padding for smaller screens */
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__content-block {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  margin-top: 25px;
  margin-bottom: 15px;
  width: 100%;
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
  flex: 1 1 100%;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  flex: 1 1 100%;
}

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

.page-gdpr__list strong {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__image {
  max-width: 45%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

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

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

.page-gdpr__content-block .page-gdpr__image--left + p, 
.page-gdpr__content-block .page-gdpr__image--right + p {
    flex: 1 1 calc(55% - 30px); /* Adjust width to fit image */
}

.page-gdpr__content-block h3 {
  flex: 1 1 100%;
}

.page-gdpr__link-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__link-button:hover {
  background-color: #13994A;
}

.page-gdpr__call-to-action {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__call-to-action .page-gdpr__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__call-to-action .page-gdpr__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.5em;
  }

  .page-gdpr__content-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image {
    max-width: 100%;
    margin: 0 auto;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    order: initial;
    margin-left: 0;
    margin-right: 0;
  }

  .page-gdpr__content-block .page-gdpr__image--left + p, 
  .page-gdpr__content-block .page-gdpr__image--right + p {
      flex: 1 1 100%;
  }
}

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

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

  .page-gdpr__description {
    font-size: 1em;
  }

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

  .page-gdpr__container {
    padding: 0 10px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

  .page-gdpr__content-block {
    padding: 20px;
  }

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

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

  .page-gdpr__cta-button,
  .page-gdpr__link-button {
    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__call-to-action {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}