.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark body background */
  background-color: var(--background-color, #08160F); /* Fallback to custom background color */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  min-height: 500px;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%);
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6;
}

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

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

.page-gdpr__description--light {
  color: #F2FFF6;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-gdpr__light-bg {
  background-color: #0A4B2C; /* Deep Green for light sections */
  color: #F2FFF6;
}

.page-gdpr__dark-section {
  background-color: #08160F; /* Darker background for contrast */
  color: #F2FFF6;
}

.page-gdpr__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section-title--light {
  color: #F2C14E;
}

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__text-block--light {
  color: #F2FFF6;
}

.page-gdpr__text-link {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: #2AD16F;
}

.page-gdpr__text-link--light {
  color: #57E38D;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-gdpr__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  flex-grow: 1;
}

.page-gdpr__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D;
  margin-left: 15px;
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #1E3A2A;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #08160F;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #F2C14E;
}

.text-main {
  color: #57E38D;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__card-title {
    font-size: 1.3rem;
  }
  .page-gdpr__hero-content {
    padding: 15px;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
}

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

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    min-height: 400px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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

  .page-gdpr__cta-button, .page-gdpr__btn-primary, .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"], .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;
  }

  .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;
  }

  .page-gdpr__cta-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    min-height: 350px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}