/* style/gdpr.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-color-dark: #121212; /* Body background from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: var(--background-color-dark);
  padding-top: 120px; /* Desktop: Ensure content is not hidden by fixed header */
}

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

.page-gdpr__hero-section {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-gdpr__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.page-gdpr__hero-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

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

.page-gdpr__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  color: var(--text-color-dark-bg);
}

.page-gdpr__dark-section .page-gdpr__text-block {
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  padding: 0;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
}

.page-gdpr__dark-section .page-gdpr__list {
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: var(--secondary-color);
}

.page-gdpr__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.page-gdpr__link-inline {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link-inline:hover {
  color: #fff;
  text-decoration: underline;
}

.page-gdpr__contact-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__contact-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-color-dark-bg);
}

.page-gdpr__contact-item strong {
  color: var(--secondary-color);
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 20px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__text-block, .page-gdpr__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px; /* Mobile: Ensure content is not hidden by fixed header */
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__contact-item {
    font-size: 0.95em;
    text-align: left; /* Adjust text alignment for mobile readability */
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__image-full-width {
    margin: 30px auto;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__text-block, .page-gdpr__list-item {
    font-size: 0.9em;
  }
  .page-gdpr__list-item strong {
    display: block;
    margin-bottom: 5px;
  }
}