:root {
  --glife-primary-color: #F2C14E;
  --glife-secondary-color: #FFD36B;
  --glife-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --glife-card-bg: #111111;
  --glife-background: #0A0A0A;
  --glife-text-main: #FFF6D6;
  --glife-border: #3A2A12;
  --glife-glow: #FFD36B;
}

.page-gdpr {
  font-family: Arial, sans-serif;
  color: var(--glife-text-main); /* Light text on dark body background */
  background-color: var(--glife-background); /* Default background for main content */
  line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, main offset from body */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--glife-text-main);
  /* No fixed font-size, rely on weight, line-height, etc. */
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--glife-text-main);
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: var(--glife-button-gradient);
  color: #ffffff; /* Button text always white */
  border: 2px solid transparent;
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--glife-primary-color);
  border: 2px solid var(--glife-primary-color);
}

.page-gdpr__btn-secondary:hover {
  background: var(--glife-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

/* General Section Styles */
.page-gdpr__intro-section,
.page-gdpr__rights-section,
.page-gdpr__cookies-section,
.page-gdpr__updates-section,
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: var(--glife-background);
}

.page-gdpr__dark-section {
  padding: 60px 0;
  background-color: var(--glife-card-bg);
  color: var(--glife-text-main);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--glife-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.5em;
  color: var(--glife-secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr p {
  margin-bottom: 1em;
  color: var(--glife-text-main);
}

.page-gdpr a {
  color: var(--glife-primary-color);
  text-decoration: none;
}

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

/* List Styles */
.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gdpr__list-item {
  background-color: var(--glife-card-bg);
  border: 1px solid var(--glife-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-gdpr__list-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__list-title {
  font-size: 1.3em;
  color: var(--glife-secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

/* Images in Content */
.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  max-width: 400px; /* Adjust as needed for layout */
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  max-width: 400px; /* Adjust as needed for layout */
}

/* Clearfix for floated images */
.page-gdpr__data-collection-section .page-gdpr__container::after,
.page-gdpr__rights-section .page-gdpr__container::after,
.page-gdpr__security-section .page-gdpr__container::after,
.page-gdpr__cookies-section .page-gdpr__container::after {
  content: "";
  display: table;
  clear: both;
}

/* Contact Info */
.page-gdpr__contact-info {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glife-border);
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

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

.page-gdpr__faq-item {
  background-color: var(--glife-card-bg);
  border: 1px solid var(--glife-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--glife-secondary-color);
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  transform: rotate(45deg); /* Plus becomes an X */
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--glife-text-main);
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 30px 15px;
  }

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

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }
}

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

  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }

  .page-gdpr__hero-content {
    padding: 20px 10px;
  }

  .page-gdpr__main-title {
    font-size: 1.8em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__btn-primary:last-child,
  .page-gdpr__btn-secondary:last-child {
    margin-bottom: 0;
  }

  .page-gdpr__intro-section,
  .page-gdpr__rights-section,
  .page-gdpr__dark-section,
  .page-gdpr__cookies-section,
  .page-gdpr__updates-section,
  .page-gdpr__faq-section {
    padding: 40px 0;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

  .page-gdpr__list-item {
    padding: 20px;
  }

  .page-gdpr__list-title {
    font-size: 1.2em;
  }

  /* Mobile image adaptation */
  .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;
  }
  
  /* Clear floats for mobile */
  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
  }

  .page-gdpr__contact-info {
    padding: 20px;
  }

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

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

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