/* style/gdpr.css */

/* Custom Colors */
:root {
  --page-gdpr-primary-color: #11A84E;
  --page-gdpr-secondary-color: #22C768;
  --page-gdpr-bg-color: #08160F; /* Background */
  --page-gdpr-card-bg: #11271B; /* Card BG */
  --page-gdpr-text-main: #F2FFF6; /* Text Main */
  --page-gdpr-text-secondary: #A7D9B8; /* Text Secondary */
  --page-gdpr-border-color: #2E7A4E; /* Border */
  --page-gdpr-glow-color: #57E38D;
  --page-gdpr-gold-color: #F2C14E;
  --page-gdpr-divider-color: #1E3A2A;
  --page-gdpr-deep-green-color: #0A4B2C;
  --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

.page-gdpr {
  background-color: var(--page-gdpr-bg-color);
  color: var(--page-gdpr-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--page-gdpr-deep-green-color);
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  text-align: center;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--page-gdpr-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.1rem;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: var(--page-gdpr-button-gradient);
  color: var(--page-gdpr-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--page-gdpr-divider-color);
}

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

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-gdpr-gold-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--page-gdpr-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-gdpr__text-block {
  font-size: 1.05rem;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-gdpr__text-block strong {
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  font-size: 1rem;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: var(--page-gdpr-primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure proper contrast for all text elements */
.page-gdpr h1, .page-gdpr h2, .page-gdpr h3, .page-gdpr p, .page-gdpr li, .page-gdpr a {
  color: var(--page-gdpr-text-main); /* Default to main text color for general readability */
}

.page-gdpr__main-title, .page-gdpr__section-title {
  color: var(--page-gdpr-gold-color); /* Override for titles */
}

.page-gdpr__sub-title {
  color: var(--page-gdpr-secondary-color); /* Override for subtitles */
}

.page-gdpr__description, .page-gdpr__text-block, .page-gdpr__list-item {
  color: var(--page-gdpr-text-secondary); /* Override for body text */
}

.page-gdpr__btn-primary {
  color: var(--page-gdpr-text-main); /* Ensure button text is readable */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding: 10px 15px 40px; /* Adjust padding for mobile */
  }

  .page-gdpr__hero-content {
    margin-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: 2.2rem;
  }

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

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1rem;
  }

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

  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }

  /* Image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__image {
    margin-left: 0;
    margin-right: 0;
  }

  /* Video responsiveness (if any, applying general rules) */
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}