.page-gdpr {
  background-color: #0D0E12; /* Custom background color */
  color: #FFF3E6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #0D0E12;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure image doesn't stretch beyond its intended max width */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #17191F; /* Card BG for sections */
  border-bottom: 1px solid #A84F0C; /* Border color */
}

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #FFA53A; /* Auxiliary color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-gdpr p {
  margin-bottom: 1em;
  color: #FFF3E6;
}

.page-gdpr a {
  color: #FFB04D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FFA53A;
  text-decoration: underline;
}

.page-gdpr__principles-list,
.page-gdpr__security-list,
.page-gdpr__rights-list,
.page-gdpr__accountability-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-gdpr__principles-list li,
.page-gdpr__security-list li,
.page-gdpr__rights-list li,
.page-gdpr__accountability-list li {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-gdpr__principles-title,
.page-gdpr__security-title,
.page-gdpr__rights-title,
.page-gdpr__accountability-title {
  font-size: 1.5em;
  color: #FFA53A;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

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

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: #17191F;
  color: #FFA53A;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid #FFA53A;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-gdpr__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

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

.page-gdpr__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFF3E6;
  outline: none;
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  color: #FFA53A;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: #FFF3E6;
  font-size: 1.05em;
}

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

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0D0E12;
}

.page-gdpr__footer {
  background-color: #0D0E12;
  color: #FFF3E6;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #A84F0C;
}

.page-gdpr__copyright {
  margin: 0;
  font-size: 0.9em;
}

/* Clearfix for floating images */
.page-gdpr__section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    height: 500px;
  }
  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
  }
}

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

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    padding-bottom: 40px;
  }

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

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-gdpr__cta-button,
  .page-gdpr__cta-button--large,
  .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;
    margin-bottom: 15px; /* Add some space between stacked buttons */
  }

  .page-gdpr__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
  }

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

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

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

  .page-gdpr__principles-list li,
  .page-gdpr__security-list li,
  .page-gdpr__rights-list li,
  .page-gdpr__accountability-list li {
    padding: 20px;
  }

  .page-gdpr__principles-title,
  .page-gdpr__security-title,
  .page-gdpr__rights-title,
  .page-gdpr__accountability-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .page-gdpr__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.3em;
  }

  /* Image responsive rules */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
    float: none !important; /* Remove float for mobile */
  }
  
  .page-gdpr__image--left,
  .page-gdpr__image--right {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  /* Ensure content containers don't cause overflow */
  .page-gdpr__content-area,
  .page-gdpr__section,
  .page-gdpr__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

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

  .page-gdpr__cta-button,
  .page-gdpr__cta-button--large,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-gdpr__faq-item summary {
    font-size: 1em;
    padding: 12px 15px;
  }
}