.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F2FFF6;
  padding: 80px 20px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 40, 27, 0.7); /* Card B G with transparency */
  border-radius: 10px;
}

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

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

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

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

.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #F2FFF6;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #22C768; /* Auxiliary color */
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__grid--col-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-gdpr__grid--col-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-gdpr__grid-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__item-title {
  font-size: 1.4em;
  color: #2AD16F; /* Brighter green for emphasis */
  margin-bottom: 15px;
}

.page-gdpr__item-text {
  color: #A7D9B8;
}

.page-gdpr__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-gdpr__card {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-gdpr__card-text {
  color: #A7D9B8;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

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

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.page-gdpr__list-item {
  background-color: #11271B; /* Card B G */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #2AD16F;
  color: #A7D9B8;
  font-size: 1.05em;
}

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

.page-gdpr__list-item a {
  color: #57E38D;
  text-decoration: none;
}

.page-gdpr__list-item a:hover {
  text-decoration: underline;
}

.page-gdpr__card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-gdpr__card--dark {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
}

.page-gdpr__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

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

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

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

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

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

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

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #57E38D; /* Glow */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #57E38D; /* Glow */
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 0 auto 30px auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr__grid,
  .page-gdpr__grid--col-2,
  .page-gdpr__grid--col-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__grid-item,
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__item-title,
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__list-item {
    padding: 12px 15px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
    font-size: 1em;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    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 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__card-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__hero-content {
    padding: 15px;
  }
}

/* Contrast Fixes - Default to light text on dark background for main content, dark text on white for cards if needed */
.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-gdpr__card {
  background-color: #11271B;
  color: #A7D9B8;
}

.page-gdpr__card .page-gdpr__card-title {
  color: #F2C14E;
}

.page-gdpr a {
  color: #57E38D;
}