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

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

.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

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

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

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

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--page-gdpr-text-main);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5rem;
  color: var(--page-gdpr-gold-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__section-title--light {
  color: var(--page-gdpr-gold-color);
}

.page-gdpr__text-block {
  font-size: 1rem;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.8;
}

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

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

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.page-gdpr__list--light .page-gdpr__list-item {
  background-color: var(--page-gdpr-deep-green);
  border-color: var(--page-gdpr-border-color);
}

.page-gdpr__list-item {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-gdpr__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__list-title {
  font-size: 1.3rem;
  color: var(--page-gdpr-gold-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__list-item p {
  color: var(--page-gdpr-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__contact-item {
  font-size: 1.1rem;
  color: var(--page-gdpr-text-main);
  margin-bottom: 10px;
}

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

.page-gdpr__contact-link:hover {
  color: var(--page-gdpr-glow-color);
}

.page-gdpr__faq-list {
  margin-top: 30px;
  text-align: left;
}

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-deep-green);
  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;
  font-size: 1.2rem;
  color: var(--page-gdpr-gold-color);
  cursor: pointer;
  font-weight: bold;
  background-color: var(--page-gdpr-card-bg);
  border-bottom: 1px solid var(--page-gdpr-divider-color);
}

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

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

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

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

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

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

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

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

.page-gdpr__cta-section {
  background-color: var(--page-gdpr-deep-green);
  padding: 80px 20px;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: var(--page-gdpr-gold-color);
}

.page-gdpr__cta-section .page-gdpr__text-block {
  color: var(--page-gdpr-text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-gdpr__btn-primary {
  background: var(--page-gdpr-button-gradient);
  color: var(--page-gdpr-text-main);
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-gdpr__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: var(--page-gdpr-gold-color);
  border: 2px solid var(--page-gdpr-gold-color);
}

.page-gdpr__btn-secondary:hover {
  background-color: var(--page-gdpr-gold-color);
  color: var(--page-gdpr-bg-color);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 15px;
  }

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

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

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

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item p,
  .page-gdpr__contact-item,
  .page-gdpr__faq-answer p {
    font-size: 0.9rem;
  }

  .page-gdpr__list-title,
  .page-gdpr__faq-question {
    font-size: 1.1rem;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__what-is-gdpr,
  .page-gdpr__commitment,
  .page-gdpr__data-collection,
  .page-gdpr__user-rights,
  .page-gdpr__security-measures,
  .page-gdpr__data-retention,
  .page-gdpr__contact,
  .page-gdpr__faq,
  .page-gdpr__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

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

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__hero-content {
    padding: 15px;
  }
}