.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* #FFF6D6 */
  background-color: var(--bg-color); /* #0A0A0A */
}

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

.page-gdpr__dark-bg {
  background-color: var(--bg-color); /* #0A0A0A */
  color: var(--text-main-color); /* #FFF6D6 */
}

.page-gdpr__light-bg {
  background-color: var(--card-bg-color); /* #111111 */
  color: var(--text-main-color); /* #FFF6D6 */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Rely on body padding for header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 30px 20px;
  margin-top: -100px; /* Pull content slightly over the image for visual blend */
  background: rgba(17, 17, 17, 0.8); /* Semi-transparent card background */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color); /* #3A2A12 */
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--text-main-color); /* #FFF6D6 */
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-gdpr__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--text-main-color); /* #FFF6D6 */
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gradient-start-color) 0%, var(--gradient-end-color) 100%); /* #FFD86A to #DDA11D */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  opacity: 0.9;
}

.page-gdpr__cta-button--secondary {
  background: var(--card-bg-color); /* #111111 */
  color: var(--primary-color); /* #F2C14E */
  border: 2px solid var(--primary-color); /* #F2C14E */
  box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
  background: var(--primary-color); /* #F2C14E */
  color: var(--card-bg-color); /* #111111 */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

/* General Content Sections */
.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--primary-color); /* #F2C14E */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main-color); /* #FFF6D6 */
}

.page-gdpr__text-block a.page-gdpr__inline-link {
  color: var(--secondary-color); /* #FFD36B */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-block a.page-gdpr__inline-link:hover {
  color: var(--primary-color); /* #F2C14E */
}

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

.page-gdpr__principle-card {
  background-color: var(--card-bg-color); /* #111111 */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color); /* #3A2A12 */
}

.page-gdpr__principle-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--glow-color)); /* #FFD36B */
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: var(--primary-color); /* #F2C14E */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: var(--text-main-color); /* #FFF6D6 */
}

/* Rights Section */
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__list-item {
  background-color: var(--card-bg-color); /* #111111 */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color); /* #3A2A12 */
}

.page-gdpr__list-title {
  font-size: 1.3em;
  color: var(--secondary-color); /* #FFD36B */
  margin-bottom: 10px;
  font-weight: 500;
}

.page-gdpr__list-text {
  font-size: 1em;
  color: var(--text-main-color); /* #FFF6D6 */
}

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

.page-gdpr__feature-card {
  background-color: var(--card-bg-color); /* #111111 */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color); /* #3A2A12 */
}

.page-gdpr__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--glow-color)); /* #FFD36B */
}

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

.page-gdpr__faq-item {
  background-color: var(--card-bg-color); /* #111111 */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color); /* #3A2A12 */
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 500;
  color: var(--primary-color); /* #F2C14E */
  position: relative;
  list-style: none; /* For details/summary */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-question::marker {
  display: none;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--secondary-color); /* #FFD36B */
}

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-main-color); /* #FFF6D6 */
}

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

/* Variable Definitions */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --gradient-start-color: #FFD86A;
  --gradient-end-color: #DDA11D;
  --card-bg-color: #111111;
  --bg-color: #0A0A0A;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

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

  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
  }

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

  .page-gdpr__description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }

  .page-gdpr__principles-grid,
  .page-gdpr__protection-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Rely on body padding */
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile: contain to avoid cropping important parts */
    max-height: none !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__hero-content {
    margin-top: 20px; /* Adjust margin to be below image */
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0;
    box-shadow: none;
  }

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

  .page-gdpr__description {
    font-size: 1em;
  }

  /* General containers and images */
  .page-gdpr__container,
  .page-gdpr__intro-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__data-protection-section,
  .page-gdpr__cookies-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  /* Buttons and button containers */
  .page-gdpr__cta-button,
  .page-gdpr__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* If multiple buttons were side-by-side, they would wrap or stack */
  .page-gdpr__button-group { /* Example if there was a button group */
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Principles and Features Grid */
  .page-gdpr__principles-grid,
  .page-gdpr__protection-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__principle-card,
  .page-gdpr__feature-card {
    padding: 20px;
  }

  .page-gdpr__principle-icon,
  .page-gdpr__feature-icon {
    width: 80px;
    height: 80px;
  }

  /* FAQ */
  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  .page-gdpr__list-item {
    padding: 20px;
  }
  
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
}