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

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

.page-gdpr__hero-section {
  padding-top: 10px; /* Rely on body padding-top from shared.css */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #111111 0%, #0A0A0A 100%);
  border-bottom: 1px solid var(--border-color, #3A2A12);
}

.page-gdpr__hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  filter: brightness(0.8);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3em);
  font-weight: 700;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  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;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Changed to dark for contrast with light gradient */
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-main-color, #FFF6D6);
  border: 2px solid var(--border-color, #3A2A12);
}

.page-gdpr__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  border-color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.2);
}

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color, #3A2A12);
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--glow-color, #FFD36B);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-gdpr__content-section p {
  font-size: 1.05em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px; /* Example max-width for content images */
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

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

.page-gdpr__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-gdpr__list-title {
  font-size: 1.3em;
  color: var(--glow-color, #FFD36B);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__list-item p {
  font-size: 1em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 0;
}

.page-gdpr__text-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__contact-item {
  font-size: 1.05em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 10px;
}

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

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--glow-color, #FFD36B);
  cursor: pointer;
  background-color: var(--card-bg-color, #111111);
  user-select: none;
  list-style: none; /* For details/summary */
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 30px;
  text-align: center;
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--text-main-color, #FFF6D6);
  line-height: 1.5;
}

.page-gdpr__cta-section {
  background: linear-gradient(135deg, #111111 0%, #0A0A0A 100%);
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__cta-container {
  max-width: 900px;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
}

.page-gdpr__cta-section .page-gdpr__section-title::after {
  background: #F2C14E;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 40px;
}

/* --- Responsive Styles --- */

/* Mobile specific styles */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped */
    max-height: none !important;
    height: auto !important;
    aspect-ratio: unset !important;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
    margin-bottom: 15px;
  }

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

  .page-gdpr__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

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

  .page-gdpr__content-section p {
    font-size: 0.95em;
  }

  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

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

  .page-gdpr__list-title {
    font-size: 1.1em;
  }

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

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

  .page-gdpr__cta-section {
    padding: 50px 0;
  }

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

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

  /* General image and container rules for mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

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

/* Tablet specific styles (if needed, otherwise 768px handles both) */
@media (max-width: 1024px) {
  .page-gdpr__container {
    padding: 20px;
  }

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

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

  .page-gdpr__cta-buttons {
    gap: 15px;
  }
}