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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop header offset */
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #000000; /* Dark text for light gradient background */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

.page-gdpr__hero-title {
  font-size: clamp(2em, 3.5vw, 2.8em); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000000;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #FFD36B; /* Auxiliary brand color for sub-titles */
}

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

.page-gdpr__introduction-section,
.page-gdpr__commitment-section,
.page-gdpr__cookie-policy-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-gdpr__dark-section {
  background-color: #111111; /* Card BG color */
  padding: 60px 0;
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__sub-title,
.page-gdpr__dark-section .page-gdpr__text-block,
.page-gdpr__dark-section .page-gdpr__inline-link,
.page-gdpr__dark-section ul li,
.page-gdpr__dark-section strong {
  color: #FFF6D6;
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2C14E;
}

.page-gdpr__dark-section .page-gdpr__sub-title {
  color: #FFD36B;
}

.page-gdpr__principles-list ul,
.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-gdpr__principles-list li,
.page-gdpr__list li {
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-gdpr__image-text-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.page-gdpr__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__content-image--center {
  margin: 30px auto;
  max-width: 70%;
}

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__right-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #FFF6D6;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-gdpr__inline-link {
  color: #F2C14E; /* Main brand color for links */
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: #FFD36B;
  text-decoration: none;
}

.page-gdpr__processing-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-gdpr__method-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #FFF6D6;
}

.page-gdpr__contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  justify-content: center;
}

.page-gdpr__contact-image {
  flex: 1;
  min-width: 300px;
  max-width: 40%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__contact-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

.page-gdpr__btn-primary--center {
  display: block;
  margin: 30px auto 0 auto;
  width: fit-content;
}

.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

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

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

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

.page-gdpr__faq-title {
  margin: 0;
  color: #FFD36B;
}

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

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  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 all content */
  padding: 15px 25px;
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
  color: #FFF6D6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
  }

  .page-gdpr__hero-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

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

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

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

  .page-gdpr__text-block {
    font-size: 0.95em;
  }

  .page-gdpr__image-text-block,
  .page-gdpr__contact-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__content-image,
  .page-gdpr__contact-image {
    max-width: 100%;
    min-width: unset;
  }

  .page-gdpr__content-image--center {
    max-width: 90%;
  }

  .page-gdpr__right-card,
  .page-gdpr__method-card {
    padding: 20px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__container,
  .page-gdpr__hero-container,
  .page-gdpr__hero-content,
  .page-gdpr__text-content,
  .page-gdpr__principles-list,
  .page-gdpr__list,
  .page-gdpr__rights-grid,
  .page-gdpr__processing-methods,
  .page-gdpr__contact-text,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item,
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__btn-primary--center {
    width: 100% !important;
  }

  .page-gdpr__contact-content .page-gdpr__btn-primary {
    margin-top: 20px;
  }
}