.page-gdpr {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text-main); /* Default text color for dark background */
  background-color: var(--color-background); /* Default background */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is for visual spacing */
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

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

.page-gdpr__hero-content {
  position: relative; /* Ensure content is above image */
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image for better visual flow */
  background: linear-gradient(0deg, var(--color-background) 0%, rgba(8, 22, 15, 0.8) 70%, rgba(8, 22, 15, 0) 100%);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
  border: none;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-gdpr__intro-section p,
.page-gdpr__rights-section p,
.page-gdpr__request-section p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-gdpr__dark-section {
  background-color: var(--color-card-bg);
  padding: 60px 20px;
}

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

.page-gdpr__text-secondary {
  color: var(--color-text-secondary);
}

.page-gdpr__principles-grid,
.page-gdpr__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__principle-card,
.page-gdpr__security-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover,
.page-gdpr__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-glow);
}

.page-gdpr__principle-icon,
.page-gdpr__security-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__principle-card p,
.page-gdpr__security-item p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__right-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__right-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__rights-section p {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.page-gdpr__related-policies {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-divider);
}

.page-gdpr__subtitle {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__related-policies ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

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

.page-gdpr__link:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.page-gdpr__process-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 30px;
}

.page-gdpr__process-list li {
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-gdpr__process-list li strong {
  color: var(--color-primary);
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

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

.page-gdpr__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-gdpr__faq-item summary:hover {
  background-color: rgba(var(--color-primary), 0.1);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: var(--color-primary);
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-glow);
  margin-left: 15px;
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid var(--color-divider);
  margin-top: -1px; /* Overlap border */
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-card-bg) 0%, var(--color-deep-green) 100%);
  border-top: 1px solid var(--color-divider);
}

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

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-gdpr__btn-secondary {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.page-gdpr__btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  }
  .page-gdpr__principles-grid,
  .page-gdpr__security-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__intro-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__request-section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section,
  .page-gdpr__content-area,
  .page-gdpr__principles-grid,
  .page-gdpr__security-grid,
  .page-gdpr__rights-grid,
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-section {
    padding: 10px 0 30px 0;
  }
  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-gdpr__description {
    font-size: 0.95rem;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
  .page-gdpr__principles-grid,
  .page-gdpr__security-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__principle-card,
  .page-gdpr__security-item,
  .page-gdpr__right-item {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.2rem;
  }
  .page-gdpr__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__cta-button,
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__related-policies ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    margin-top: -60px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .page-gdpr__description {
    font-size: 0.9rem;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 6.5vw, 1.8rem);
  }
  .page-gdpr__cta-button {
    padding: 12px 20px;
  }
}