/* style/gdpr.css */
:root {
  --page-gdpr-primary-color: #11A84E;
  --page-gdpr-secondary-color: #22C768;
  --page-gdpr-background-color: #08160F;
  --page-gdpr-card-bg-color: #11271B;
  --page-gdpr-text-main-color: #F2FFF6;
  --page-gdpr-text-secondary-color: #A7D9B8;
  --page-gdpr-border-color: #2E7A4E;
  --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%);
}

.page-gdpr {
  background-color: var(--page-gdpr-background-color);
  color: var(--page-gdpr-text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__section {
  padding: 60px 0;
  position: relative;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--page-gdpr-text-main-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-gdpr-deep-green-color);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: var(--page-gdpr-text-secondary-color);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: var(--page-gdpr-button-gradient);
  color: var(--page-gdpr-text-main-color);
  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;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--page-gdpr-primary-color);
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__cta-button--secondary:hover {
  background: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-main-color);
}

.page-gdpr__paragraph {
  font-size: 1em;
  color: var(--page-gdpr-text-secondary-color);
  margin-bottom: 20px;
}

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

.page-gdpr__our-commitment {
  background-color: var(--page-gdpr-card-bg-color);
}

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

.page-gdpr__feature-item {
  text-align: center;
  padding: 25px;
  background-color: var(--page-gdpr-background-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--page-gdpr-border-color);
}

.page-gdpr__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-gdpr__feature-title {
  font-size: 1.5em;
  color: var(--page-gdpr-text-main-color);
  margin-bottom: 15px;
}

.page-gdpr__feature-description {
  color: var(--page-gdpr-text-secondary-color);
  font-size: 0.95em;
}

.page-gdpr__principles .page-gdpr__paragraph {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__principle-list {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 40px;
}

.page-gdpr__principle-item {
  background-color: var(--page-gdpr-card-bg-color);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__principle-description {
  color: var(--page-gdpr-text-secondary-color);
  font-size: 0.95em;
}

.page-gdpr__your-rights {
  background-color: var(--page-gdpr-deep-green-color);
}

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

.page-gdpr__right-card {
  background-color: var(--page-gdpr-card-bg-color);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-gdpr__how-we-implement .page-gdpr__paragraph {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__implementation-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__implementation-item {
  background-color: var(--page-gdpr-card-bg-color);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__implementation-description {
  color: var(--page-gdpr-text-secondary-color);
  font-size: 0.95em;
}

.page-gdpr__contact-us {
  background-color: var(--page-gdpr-card-bg-color);
  text-align: center;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: var(--page-gdpr-text-main-color);
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

.page-gdpr__contact-link {
  color: var(--page-gdpr-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--page-gdpr-secondary-color);
  text-decoration: underline;
}

.page-gdpr__faq {
  background-color: var(--page-gdpr-background-color);
}

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

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-card-bg-color);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--page-gdpr-text-main-color);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--page-gdpr-deep-green-color);
  border-bottom: 1px solid var(--page-gdpr-border-color);
  list-style: none; /* For details summary */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom: 1px solid var(--page-gdpr-primary-color);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  background-color: var(--page-gdpr-background-color);
  color: var(--page-gdpr-text-secondary-color);
  font-size: 1em;
  border-top: none;
}

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

.page-gdpr__related-links {
  text-align: center;
  background-color: var(--page-gdpr-deep-green-color);
}

.page-gdpr__link-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

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

.page-gdpr__link {
  color: var(--page-gdpr-primary-color);
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__hero-content {
    padding: 30px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-gdpr__feature-list, .page-gdpr__rights-grid {
    gap: 20px;
  }
}

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

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

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

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

  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
  }

  .page-gdpr__hero-content {
    padding: 20px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em;
  }
  
  .page-gdpr__cta-button--secondary {
    margin-top: 15px;
  }

  .page-gdpr__image {
    margin: 20px auto;
  }

  .page-gdpr__feature-list, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__feature-icon {
    width: 100px;
    height: 100px;
  }

  .page-gdpr__principle-item, .page-gdpr__implementation-item, .page-gdpr__right-card {
    padding: 20px;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile specific image and container sizing */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__feature-item,
  .page-gdpr__principle-item,
  .page-gdpr__right-card,
  .page-gdpr__implementation-item,
  .page-gdpr__faq-item,
  .page-gdpr__related-links {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
}

/* Ensure images within content areas do not shrink below 200px due to CSS */
.page-gdpr__feature-icon, .page-gdpr__image {
  min-width: 200px;
  min-height: 200px;
}

/* Override for smaller feature icons if needed, but ensure content images are large */
.page-gdpr__feature-icon {
  width: 100px; /* Example, adjust as needed */
  height: 100px; /* Example, adjust as needed */
  min-width: unset; /* Allow smaller for icons specifically */
  min-height: unset; /* Allow smaller for icons specifically */
}

/* Ensure contrast for links */
.page-gdpr a {
  color: var(--page-gdpr-primary-color); /* Default link color */
}

.page-gdpr a:hover {
  color: var(--page-gdpr-gold-color); /* Hover color */
}

.page-gdpr__dark-bg {
  background-color: var(--page-gdpr-card-bg-color);
  color: var(--page-gdpr-text-main-color);
}

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__feature-title,
.page-gdpr__dark-bg .page-gdpr__contact-info {
  color: var(--page-gdpr-text-main-color);
}

.page-gdpr__dark-bg .page-gdpr__paragraph,
.page-gdpr__dark-bg .page-gdpr__feature-description {
  color: var(--page-gdpr-text-secondary-color);
}