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

.page-gdpr a {
  color: #FFD36B; /* Glow */
  text-decoration: none;
}

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

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  max-width: 100%;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  text-decoration: none;
}

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

.page-gdpr__section-title {
  color: #F2C14E; /* Main color */
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__data-list,
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__data-list-item,
.page-gdpr__rights-list-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #FFF6D6;
  display: flex;
  align-items: center;
}

.page-gdpr__data-list-item strong,
.page-gdpr__rights-list-item strong {
  color: #FFD36B; /* Glow */
  margin-right: 10px;
}

.page-gdpr__contact-info {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 25px;
  border-radius: 8px;
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  color: #FFF6D6;
}

.page-gdpr__contact-detail {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__contact-detail a {
  color: #FFD36B;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #F2C14E; /* Main color for question */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item-title {
  margin: 0;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Glow */
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  transform: rotate(0deg); /* Explicitly set for consistency */
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

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

.page-gdpr__faq-text {
  margin: 0;
  font-size: 0.95em;
}

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding for mobile */
  }

  .page-gdpr__hero-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

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

  .page-gdpr__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-gdpr__data-list-item,
  .page-gdpr__rights-list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .page-gdpr__data-list-item strong,
  .page-gdpr__rights-list-item strong {
    margin-bottom: 5px;
  }

  .page-gdpr__faq-question {
    padding: 12px 15px;
  }

  .page-gdpr__faq-item-title {
    font-size: 1em;
  }

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

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