/* style/gdpr.css */
.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.05em;
}

.page-gdpr__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-gdpr__button--tertiary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--tertiary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-gdpr__section {
  margin-bottom: 50px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #FCBC45;
}

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
}

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

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__section--with-image,
.page-gdpr__section--reversed-image {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure images are not too small */
}

.page-gdpr__section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min image width */
  min-height: 200px; /* Min image height */
  object-fit: cover;
}

.page-gdpr__text-content {
  flex: 2;
}

.page-gdpr__section--reversed-image .page-gdpr__image-wrapper {
  order: 2;
}

.page-gdpr__section--reversed-image .page-gdpr__text-content {
  order: 1;
}

.page-gdpr__section-image--center {
  display: block;
  margin: 20px auto;
  max-width: 80%;
}

.page-gdpr__section-image--full-width {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  max-height: 500px;
  object-fit: cover;
}

.page-gdpr__call-to-action {
  text-align: center;
  padding: 50px 30px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__call-to-action .page-gdpr__section-title {
  color: #FFFFFF;
  border-bottom-color: #FCBC45;
}

.page-gdpr__call-to-action .page-gdpr__section-paragraph {
  color: #F0F0F0;
  font-size: 1.15em;
}

.page-gdpr__call-to-action .page-gdpr__text-link {
  color: #FCBC45;
}

.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__section--with-image,
  .page-gdpr__section--reversed-image {
    flex-direction: column;
  }
  .page-gdpr__section--reversed-image .page-gdpr__image-wrapper {
    order: initial;
  }
  .page-gdpr__section--reversed-image .page-gdpr__text-content {
    order: initial;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
  }
  .page-gdpr__button {
    width: 80%;
    max-width: 300px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-paragraph,
  .page-gdpr__list-item {
    font-size: 1em;
  }
  /* Mobile content area image constraint */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-gdpr {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__content-area {
    padding: 20px 15px;
  }
  .page-gdpr__section {
    padding: 15px;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}