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

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

/* Hero Section */
.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #000000; /* Dark text for light gradient background */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-gdpr__hero-content {
  flex: 1;
  max-width: 50%;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333333; /* Dark text for hero background */
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #444444; /* Darker text for hero background */
}

.page-gdpr__hero-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Main color for titles */
  margin-bottom: 30px;
  text-align: center;
  padding-top: 40px;
}

.page-gdpr__introduction-section,
.page-gdpr__rights-section,
.page-gdpr__protection-section,
.page-gdpr__consent-section,
.page-gdpr__faq-section,
.page-gdpr__contact-section {
  padding: 60px 0;
}

.page-gdpr p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr strong {
  color: #FFD36B; /* Auxiliary color for emphasis */
}

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

.page-gdpr__text-link:hover {
  color: #FFD36B;
}

/* Rights Section */
.page-gdpr__rights-list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #FFF6D6;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

/* Protection Section */
.page-gdpr__protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__protection-item {
  background-color: #111111; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-gdpr__protection-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__protection-subtitle {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color for subtitles */
  margin-bottom: 15px;
}

/* Consent Section */
.page-gdpr__consent-subtitle {
  font-size: 1.8em;
  color: #F2C14E;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.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: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

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

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

.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;
}

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

/* Contact Section */
.page-gdpr__contact-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__contact-content {
  flex: 1;
}

.page-gdpr__contact-address {
  font-style: normal;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-gdpr__contact-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
}

/* Buttons */
.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff;
  border: none;
}

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

.page-gdpr__btn-secondary {
  background: #ffffff;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color */
}

.page-gdpr__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-flex,
  .page-gdpr__contact-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__hero-content,
  .page-gdpr__hero-image,
  .page-gdpr__contact-content,
  .page-gdpr__contact-image {
    max-width: 100%;
    width: 100%;
  }

  .page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

  .page-gdpr__cta-buttons {
    justify-content: center;
  }

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

  .page-gdpr__protection-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
    padding-bottom: 40px;
  }

  .page-gdpr__hero-image,
  .page-gdpr__protection-image,
  .page-gdpr__contact-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__introduction-section,
  .page-gdpr__rights-section,
  .page-gdpr__protection-section,
  .page-gdpr__consent-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    padding: 40px 0;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-gdpr__faq-question {
    font-size: 1.1em;
  }

  .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;
  }
}