/* style/gdpr.css */
/* Custom Colors */
:root {
  --page-gdpr-card-bg: #11271B;
  --page-gdpr-background: #08160F;
  --page-gdpr-text-main: #F2FFF6;
  --page-gdpr-text-secondary: #A7D9B8;
  --page-gdpr-border: #2E7A4E;
  --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-gdpr-glow: #57E38D;
  --page-gdpr-gold: #F2C14E;
  --page-gdpr-divider: #1E3A2A;
  --page-gdpr-deep-green: #0A4B2C;
}

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

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  color: var(--page-gdpr-text-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

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

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

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-gdpr__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 40px;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: var(--page-gdpr-background);
}

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

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

.page-gdpr__section-title {
  color: var(--page-gdpr-text-main);
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(87, 227, 141, 0.3);
}

.page-gdpr__text-block {
  color: var(--page-gdpr-text-secondary);
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__list-item {
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 10px;
}

.page-gdpr__list-item strong {
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list-item a,
.page-gdpr__text-block a {
  color: var(--page-gdpr-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__list-item a:hover,
.page-gdpr__text-block a:hover {
  color: var(--page-gdpr-gold);
  text-decoration: underline;
}

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

.page-gdpr__card {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-image, .page-gdpr__security-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

.page-gdpr__card-title, .page-gdpr__security-title {
  color: var(--page-gdpr-text-main);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text, .page-gdpr__security-text {
  color: var(--page-gdpr-text-secondary);
  font-size: 0.95em;
  text-align: justify;
}

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

.page-gdpr__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--page-gdpr-text-main);
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: var(--page-gdpr-deep-green);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-gdpr-glow);
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--page-gdpr-text-secondary);
  font-size: 1em;
  line-height: 1.5;
}

.page-gdpr__faq-item details > summary {
  list-style: none;
}

.page-gdpr__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-gdpr-background);
}

.page-gdpr__conclusion-section .page-gdpr__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .page-gdpr__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .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 15px;
    font-size: 1em;
  }

  .page-gdpr__cta-button--large {
    font-size: 1.1em;
    padding: 15px 20px;
    margin-top: 30px;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

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

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

  .page-gdpr__card, .page-gdpr__security-item {
    padding: 20px;
  }

  .page-gdpr__card-title, .page-gdpr__security-title {
    font-size: 1.3em;
  }

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

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

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__card,
  .page-gdpr__security-item,
  .page-gdpr__faq-item,
  .page-gdpr__container,
  .page-gdpr__content-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* For elements with padding, ensure it's applied correctly */
  .page-gdpr__content-section .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-gdpr__faq-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}