/* style/gdpr.css */
.page-gdpr {
  background-color: var(--bg-main, #08160F);
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--card-bg, #11271B);
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-gdpr__main-title {
  color: var(--gold, #F2C14E);
  font-size: clamp(2em, 4vw, 2.8em); /* Use clamp for H1 font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

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

.page-gdpr__section-title {
  color: var(--gold, #F2C14E);
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__sub-title {
  color: var(--text-main, #F2FFF6);
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
}

.page-gdpr__link {
  color: var(--glow, #57E38D);
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: var(--deep-green, #0A4B2C);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

.page-gdpr__list--bullet {
  list-style: disc;
  padding-left: 20px;
}

/* Data Collection Cards */
.page-gdpr__data-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-gdpr__data-card {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 calc(50% - 30px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__data-card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__card-title {
  color: var(--gold, #F2C14E);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

/* User Rights Grid */
.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__right-item {
  background-color: var(--deep-green, #0A4B2C);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__right-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-gdpr__right-title {
  color: var(--text-main, #F2FFF6);
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-gdpr__right-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95em;
}

.page-gdpr__paragraph--cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  font-weight: 500;
}

/* Data Protection Grid */
.page-gdpr__protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__protection-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__protection-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__protection-title {
  color: var(--gold, #F2C14E);
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-gdpr__protection-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95em;
}

/* Contact Info */
.page-gdpr__contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__contact-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--glow, #57E38D);
  border: 2px solid var(--glow, #57E38D);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  white-space: nowrap;
}

.page-gdpr__btn-secondary:hover {
  background: var(--glow, #57E38D);
  color: var(--card-bg, #11271B);
}

/* Dark/Light Sections for contrast */
.page-gdpr__dark-section {
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__light-bg {
  background-color: var(--bg-main, #08160F);
  color: var(--text-main, #F2FFF6);
}

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

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

  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }

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

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

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__data-card-wrapper,
  .page-gdpr__rights-grid,
  .page-gdpr__protection-grid,
  .page-gdpr__contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__data-card,
  .page-gdpr__right-item,
  .page-gdpr__protection-item,
  .page-gdpr__contact-item {
    flex: 1 1 100%;
    padding: 20px;
  }

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

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__data-card,
  .page-gdpr__right-item,
  .page-gdpr__protection-item,
  .page-gdpr__contact-item,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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