/* style/gdpr.css */

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

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

.page-gdpr a {
  color: var(--page-gdpr-glow);
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
  font-weight: bold;
  color: var(--page-gdpr-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

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

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

.page-gdpr__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

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

.page-gdpr__cta-button--secondary {
    background: var(--page-gdpr-card-bg);
    border: 2px solid var(--page-gdpr-glow);
    color: var(--page-gdpr-glow);
    margin-left: 20px;
}

.page-gdpr__cta-button--secondary:hover {
    background: var(--page-gdpr-deep-green);
    color: #ffffff;
    border-color: var(--page-gdpr-gold);
}

/* Content Area */
.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--page-gdpr-bg);
  color: var(--page-gdpr-text-main);
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: var(--page-gdpr-gold);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--page-gdpr-divider);
  padding-bottom: 10px;
}

.page-gdpr__section-title--cta {
    color: var(--page-gdpr-gold);
    border-bottom: none;
}

.page-gdpr__sub-title {
  font-size: 1.4em;
  color: var(--page-gdpr-glow);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block p,
.page-gdpr__text-block li {
  margin-bottom: 15px;
  color: var(--page-gdpr-text-secondary);
}

.page-gdpr__text-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

.page-gdpr__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 30px;
}

.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;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--page-gdpr-gold);
  background-color: var(--page-gdpr-deep-green);
  border-bottom: 1px solid var(--page-gdpr-border);
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-gdpr__faq-question::marker {
  display: none; /* Hide default marker for Firefox */
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

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

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

/* CTA Section */
.page-gdpr__cta-section {
  background-color: var(--page-gdpr-deep-green);
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-gdpr__cta-content {
  max-width: 800px;
}

.page-gdpr__description--cta {
  color: var(--page-gdpr-text-secondary);
  font-size: 1.1em;
  margin-bottom: 0;
}

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

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-gdpr__container--flex {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .page-gdpr__cta-content {
    flex: 1;
    text-align: left;
  }

  .page-gdpr__cta-buttons {
    flex: 0 0 auto;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px !important;
  }

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

  .page-gdpr__main-title {
    font-size: 1.8em;
    letter-spacing: normal;
  }

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

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__cta-button--secondary {
      margin-left: 0;
      margin-top: 15px; /* Add space between buttons if stacked */
  }

  .page-gdpr__content-area,
  .page-gdpr__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr__text-block p,
  .page-gdpr__text-block li {
    font-size: 0.95em;
  }

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

  .page-gdpr__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

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

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
  }
}