.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page background color from custom colors */
}

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

.page-gdpr__hero-section {
  padding: 60px 0;
  padding-top: 10px; /* Small top padding for the first section as per rule */
  text-align: center;
  background: #0A0A0A; /* Ensure hero section uses the dark background */
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Adaptive font size for H1 */
  font-weight: 700;
  color: #FFD36B; /* Use auxiliary color for highlights */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__lead-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #FFD36B;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__intro-section,
.page-gdpr__what-is-gdpr,
.page-gdpr__your-rights,
.page-gdpr__data-processing,
.page-gdpr__security-measures,
.page-gdpr__data-retention,
.page-gdpr__third-parties,
.page-gdpr__cookies,
.page-gdpr__contact-us,
.page-gdpr__updates,
.page-gdpr__faq-section {
  padding: 80px 0;
}

.page-gdpr__dark-section {
  background-color: #111111; /* Card BG color for dark sections */
  color: #FFF6D6;
}

.page-gdpr__light-bg {
  background-color: #f8f8f8; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-gdpr__light-bg .page-gdpr__section-title {
  color: #F2C14E; /* Brand primary color for titles on light background */
}

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

.page-gdpr__rights-list,
.page-gdpr__data-use-list,
.page-gdpr__security-list,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-gdpr__list-item {
  background-color: #0A0A0A; /* Darker background for list items in dark sections */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #F2C14E; /* Brand primary color for accent */
  border-radius: 4px;
  color: #FFF6D6;
  font-size: 1.1rem;
}
.page-gdpr__light-bg .page-gdpr__list-item {
  background-color: #ffffff; /* White background for list items in light sections */
  color: #333333;
  border-left-color: #F2C14E;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff; /* White text for buttons */
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Brand primary color for secondary button text */
  border: 2px solid #F2C14E; /* Brand primary color for border */
}

.page-gdpr__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-gdpr__contact-list a {
  color: #F2C14E; /* Brand primary color for links in contact list */
  text-decoration: none;
}

.page-gdpr__contact-list a:hover {
  text-decoration: underline;
}

.page-gdpr__disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #FFD36B;
}

.page-gdpr__disclaimer a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ styles */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: #111111; /* Card BG for FAQ items */
  border: 1px solid #3A2A12; /* Border color */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111;
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E;
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #0A0A0A; /* Background for answer */
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Ensure it expands */
  padding: 15px 20px;
}

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

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

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

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small top padding for the first section as per rule */
    padding-bottom: 40px;
  }

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

  .page-gdpr__lead-text {
    font-size: 1rem;
    margin: 0 auto 30px;
  }

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

  .page-gdpr__intro-section,
  .page-gdpr__what-is-gdpr,
  .page-gdpr__your-rights,
  .page-gdpr__data-processing,
.page-gdpr__security-measures,
.page-gdpr__data-retention,
.page-gdpr__third-parties,
.page-gdpr__cookies,
.page-gdpr__contact-us,
.page-gdpr__updates,
.page-gdpr__faq-section {
    padding: 50px 0;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__list-item {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  /* Ensure all containers are responsive */
  .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;
  }
}