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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6; /* Text Main */
  border: none;
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary */
  border: 2px solid #FFA53A;
}

.page-gdpr__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 165, 58, 0.1);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #A84F0C; /* Border */
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__content-area {
  font-size: 1.1em;
  color: #FFF3E6; /* Text Main */
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.page-gdpr__content-area p {
  flex: 1 1 100%;
  margin-bottom: 1em;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__image--left {
  flex: 1 1 300px;
  margin-right: 30px;
}

.page-gdpr__image--right {
  flex: 1 1 300px;
  margin-left: 30px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 100%;
}

.page-gdpr__list-item {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #FFA53A; /* Auxiliary */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-gdpr__list-item h3,
.page-gdpr__list-item h4 {
  color: #FFA53A; /* Auxiliary */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list-item p {
  color: #FFF3E6;
  flex: 1 1 100%; /* Override default flex for list item paragraphs */
}

.page-gdpr__text-link {
  color: #FFA53A; /* Auxiliary */
  text-decoration: underline;
}

.page-gdpr__text-link:hover {
  color: #FFB04D; /* Glow */
}

.page-gdpr__dark-section {
  background-color: #17191F; /* Card BG */
}

.page-gdpr__content-area--light-text p,
.page-gdpr__content-area--light-text ul li,
.page-gdpr__content-area--light-text ul li h4 {
  color: #FFF3E6;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  flex: 1 1 100%;
}

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

.page-gdpr__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF3E6;
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px; /* Ensure image is not too wide */
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-gdpr__card h3 {
  color: #FFB04D; /* Glow */
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.page-gdpr__card p {
  font-size: 0.95em;
  color: #FFF3E6;
}

.page-gdpr__faq-section {
  background-color: #0D0E12; /* Background */
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #FFF3E6;
}

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

.page-gdpr__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__cta-final-section .page-gdpr__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  color: #FFF3E6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr__text-center {
  text-align: center;
}

.page-gdpr__copyright {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #A84F0C; /* Border */
  background-color: #0D0E12; /* Background */
}

/* Keyword styling */
.page-gdpr__keyword {
  color: #FFB04D;
  font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding: 10px 15px 40px 15px;
  }

  .page-gdpr__hero-content {
    padding: 15px;
  }

  .page-gdpr__main-title {
    font-size: 1.8em; /* Adjusted for mobile */
  }

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

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    padding: 12px 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

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

  .page-gdpr__content-area {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    margin-left: 0;
    margin-right: 0;
    order: -1; /* Image appears above text on mobile */
  }

  .page-gdpr p,
  .page-gdpr li {
    font-size: 1em;
  }

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

  .page-gdpr__card-image {
    height: 200px;
  }

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

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

  /* Mobile specific image handling */
  .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,
  .page-gdpr__hero-section,
  .page-gdpr__overview-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__measures-section,
  .page-gdpr__commitment-section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-final-section,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-gdpr__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-gdpr__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-gdpr__copyright {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-gdpr__list--grid .page-gdpr__card {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* If multiple buttons are in a row */
  .page-gdpr__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}