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

.page-gdpr {
  background-color: var(--gdpr-background-color);
  color: var(--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;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: -80px; /* Pull content up over the image slightly for visual flow */
  padding: 20px;
  background: var(--gdpr-card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gdpr-border-color);
}

.page-gdpr__main-title {
  color: var(--gdpr-gold-color);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gdpr-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 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) scale(1.02);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--gdpr-card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  border: 1px solid var(--gdpr-border-color);
}

.page-gdpr__introduction .page-gdpr__container,
.page-gdpr__principles .page-gdpr__container,
.page-gdpr__user-rights .page-gdpr__container,
.page-gdpr__data-processing .page-gdpr__container,
.page-gdpr__security-measures .page-gdpr__container,
.page-gdpr__faq-section .page-gdpr__container,
.page-gdpr__cta-bottom .page-gdpr__container {
  margin-top: 30px;
}

.page-gdpr__section-title {
  color: var(--gdpr-glow-color);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gdpr-gold-color);
  border-radius: 2px;
}

.page-gdpr__text-block {
  font-size: 1rem;
  color: var(--gdpr-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list li {
  background-color: var(--gdpr-deep-green);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--gdpr-gold-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list li h3 {
  color: var(--gdpr-glow-color);
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list li p {
  color: var(--gdpr-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  padding-top: 20px;
}

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

.page-gdpr__cta-bottom {
  text-align: center;
  padding-bottom: 50px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -60px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-gdpr__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-gdpr__container {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }
  .page-gdpr__list li {
    padding: 15px;
  }
  .page-gdpr__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__hero-content {
    margin-top: -40px;
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }
  .page-gdpr__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-gdpr__cta-button,
  .page-gdpr__cta-button--large {
    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;
    font-size: 1rem !important;
  }
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__introduction .page-gdpr__container,
  .page-gdpr__principles .page-gdpr__container,
  .page-gdpr__user-rights .page-gdpr__container,
  .page-gdpr__data-processing .page-gdpr__container,
  .page-gdpr__security-measures .page-gdpr__container,
  .page-gdpr__faq-section .page-gdpr__container,
  .page-gdpr__cta-bottom .page-gdpr__container {
    margin-top: 20px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }
  .page-gdpr__text-block {
    font-size: 0.9rem;
  }
  .page-gdpr__list li h3 {
    font-size: 1.1rem;
  }
  .page-gdpr__list li p {
    font-size: 0.85rem;
  }
  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  .page-gdpr__faq-item summary {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-answer {
    font-size: 0.85rem;
  }
}