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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

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

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

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s 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--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  margin-left: 15px;
}

.page-gdpr__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

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

.page-gdpr__dark-section {
  background-color: #11271B; /* Card BG */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__introduction p,
.page-gdpr__rights p,
.page-gdpr__data-collection p,
.page-gdpr__data-security p,
.page-gdpr__data-retention p,
.page-gdpr__third-party-sharing p,
.page-gdpr__contact-us p,
.page-gdpr__updates p {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-heading {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__rights-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 0;
}

.page-gdpr__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-gdpr__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__card-list {
  list-style: disc;
  padding-left: 20px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__feature-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
  max-width: 100%;
}

.page-gdpr__feature-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-gdpr__feature-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 0;
}

.page-gdpr__sharing-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__sharing-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__sharing-heading {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__sharing-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 0;
}

.page-gdpr__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }

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

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

  .page-gdpr__cta-button {
    width: 100% !important;
    margin-left: 0;
    margin-bottom: 15px;
    padding: 12px 20px;
  }

  .page-gdpr__cta-button--secondary {
    margin-left: 0;
  }

  .page-gdpr__contact-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .page-gdpr__introduction p,
  .page-gdpr__rights p,
  .page-gdpr__data-collection p,
  .page-gdpr__data-security p,
  .page-gdpr__data-retention p,
  .page-gdpr__third-party-sharing p,
  .page-gdpr__contact-us p,
  .page-gdpr__updates p {
    font-size: 0.95em;
  }

  .page-gdpr__rights-heading,
  .page-gdpr__card-title,
  .page-gdpr__feature-title,
  .page-gdpr__sharing-heading {
    font-size: 1.2em;
  }

  .page-gdpr__card-grid,
  .page-gdpr__security-features {
    grid-template-columns: 1fr;
  }

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

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

  .page-gdpr video,
  .page-gdpr__video {
    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-section,
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper,
  .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;
    overflow: hidden !important;
  }

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  .page-gdpr__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}