.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding as body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFF6D6;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: 600px; /* Default height for desktop */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop, will be contain for mobile */
  display: block;
}

.page-gdpr__hero-content {
  position: relative;
  max-width: 900px;
  padding: 40px 20px;
  z-index: 2;
  margin-top: -150px; /* Overlap slightly for visual effect, but not over image */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color */
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-gdpr__content-section {
  padding: 60px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

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

.page-gdpr__section-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 25px;
  color: #F2C14E; /* Main color */
  line-height: 1.3;
}

.page-gdpr__section-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__grid-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #3A2A12; /* Border */
}

.page-gdpr__grid-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color */
  line-height: 1.4;
}

.page-gdpr__grid-text {
  font-size: 16px;
  color: #FFF6D6;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 60px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__feature-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #3A2A12; /* Border */
}

.page-gdpr__feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Main color */
  line-height: 1.4;
}

.page-gdpr__feature-text {
  font-size: 16px;
  color: #FFF6D6;
}

.page-gdpr__policy-paragraph {
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__link {
  color: #FFD36B; /* Glow color for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #F2C14E; /* Main color on hover */
  text-decoration: underline;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__contact-list li {
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__contact-list li::before {
  content: '▶';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-size: 16px;
  line-height: 1.6;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: #F2C14E; /* Main color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #F2C14E; /* Main color border */
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Dark text for bright button */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* FAQ Styles */
details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}

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

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Slight hover effect with main color */
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B; /* Glow color */
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: rgba(17, 17, 17, 0.8); /* Slightly darker for answer */
  border-radius: 0 0 5px 5px;
  text-align: left;
  color: #FFF6D6;
}

.page-gdpr__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    height: 500px;
  }

  .page-gdpr__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }

  .page-gdpr__main-title {
    font-size: 40px;
  }

  .page-gdpr__description {
    font-size: 17px;
  }

  .page-gdpr__section-title {
    font-size: 36px;
  }

  .page-gdpr__section-intro {
    font-size: 17px;
  }

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

  .page-gdpr__security-features {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .page-gdpr__grid-title,
  .page-gdpr__feature-title {
    font-size: 20px;
  }

  .page-gdpr__grid-text,
  .page-gdpr__feature-text,
  .page-gdpr__policy-paragraph,
  .page-gdpr__contact-list li {
    font-size: 16px;
  }

  .page-gdpr__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
  }

  .page-gdpr__hero-image-wrapper {
    height: 300px !important;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__hero-content {
    margin-top: -50px !important; /* Smaller overlap for mobile */
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__main-title {
    font-size: clamp(24px, 6vw, 32px) !important; /* Clamp font size for better mobile display */
    margin-bottom: 15px !important;
  }

  .page-gdpr__description {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .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: 12px 15px !important;
    font-size: 16px !important;
  }

  .page-gdpr__content-section {
    padding: 40px 0 !important;
  }

  .page-gdpr__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: clamp(20px, 5vw, 28px) !important;
    margin-bottom: 20px !important;
  }

  .page-gdpr__section-intro {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }

  .page-gdpr__grid,
  .page-gdpr__security-features {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-gdpr__grid-item,
  .page-gdpr__feature-item {
    padding: 20px !important;
  }

  .page-gdpr__grid-title,
  .page-gdpr__feature-title {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .page-gdpr__grid-text,
  .page-gdpr__feature-text,
  .page-gdpr__policy-paragraph,
  .page-gdpr__contact-list li,
  .page-gdpr__faq-answer p {
    font-size: 14px !important;
  }

  .page-gdpr__content-image {
    margin-top: 40px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  details.page-gdpr__faq-item {
    margin-bottom: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px !important;
  }

  .page-gdpr__faq-qtext {
    font-size: 16px !important;
  }

  .page-gdpr__faq-toggle {
    font-size: 20px !important;
    width: 24px !important;
    height: 24px !important;
    margin-left: 10px !important;
  }

  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 15px !important;
  }

  .page-gdpr__contact-list {
    padding-left: 0 !important;
  }
  .page-gdpr__contact-list li {
    padding-left: 20px !important;
  }
  .page-gdpr__contact-list li::before {
    font-size: 14px !important;
    left: 0 !important;
  }

  /* Ensure no horizontal scroll for content areas */
  .page-gdpr__content-area,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__cookie-policy-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure all images adhere to min-size and no filters */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
  filter: none; /* Absolutely no filters */
}

/* Products grid is not applicable for this non-homepage */
/* If a products grid somehow appears, ensure mobile responsiveness */
/* .page-gdpr__products-grid { */
/*   display: grid; */
/*   grid-template-columns: repeat(6, 1fr); */
/*   gap: 20px; */
/* } */
/* @media (max-width: 768px) { */
/*   .page-gdpr__products-grid { */
/*     grid-template-columns: repeat(2, 1fr) !important; */
/*     overflow-x: hidden !important; */
/*     padding: 0 15px !important; */
/*     width: 100% !important; */
/*     max-width: 100% !important; */
/*     box-sizing: border-box !important; */
/*   } */
/* } */