/* style/gdpr.css */

:root {
  --page-gdpr-primary-color: #017439;
  --page-gdpr-secondary-color: #FFFFFF;
  --page-gdpr-text-dark: #333333;
  --page-gdpr-text-light: #ffffff;
  --page-gdpr-card-bg: rgba(255, 255, 255, 0.1);
  --page-gdpr-button-register: #C30808;
  --page-gdpr-button-login: #C30808;
  --page-gdpr-button-font: #FFFF00;
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-light); /* Body background is dark (#0a0a0a), so text is light */
  background-color: transparent; /* Handled by shared.css body */
}

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

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-light);
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-light);
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: var(--page-gdpr-text-dark);
}

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

.page-gdpr__light-bg {
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__content-area {
  padding: 60px 0;
}

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

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__intro-text {
  color: var(--page-gdpr-text-light);
}

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

.page-gdpr__text-block {
  margin-bottom: 40px;
}

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

.page-gdpr__card {
  background: var(--page-gdpr-card-bg);
  color: var(--page-gdpr-text-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--page-gdpr-text-light);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
}

.page-gdpr__image--bottom-margin {
  margin-bottom: 30px;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__list-item {
  background-color: var(--page-gdpr-card-bg);
  color: var(--page-gdpr-text-light);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--page-gdpr-primary-color);
  font-size: 1.1em;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--page-gdpr-button-register);
  color: var(--page-gdpr-button-font);
  border: 2px solid var(--page-gdpr-button-register);
  margin-right: 15px;
}

.page-gdpr__btn-primary:hover {
  background: #a30707;
  border-color: #a30707;
}

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

.page-gdpr__btn-secondary:hover {
  background: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__faq-section {
  padding: 60px 0;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-text-dark);
}

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

.page-gdpr__faq-question:hover {
  background-color: #e9e9e9;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

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

.page-gdpr__contact-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-light);
}

.page-gdpr__contact-section .page-gdpr__btn-primary {
  background: var(--page-gdpr-button-login);
  border-color: var(--page-gdpr-button-login);
  color: var(--page-gdpr-button-font);
}

.page-gdpr__contact-section .page-gdpr__btn-primary:hover {
  background: #a30707;
  border-color: #a30707;
}

.page-gdpr__contact-section .page-gdpr__btn-secondary {
  background: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-primary-color);
  border-color: var(--page-gdpr-secondary-color);
  margin-left: 15px;
}

.page-gdpr__contact-section .page-gdpr__btn-secondary:hover {
  background: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__sub-title {
    font-size: 1.6em;
  }
}

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

  .page-gdpr__hero-section {
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top for hero */
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__grid-layout {
    grid-template-columns: 1fr;
  }

  .page-gdpr__card {
    padding: 20px;
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    display: block;
    margin: 10px auto !important;
    width: calc(100% - 30px) !important; /* Account for padding in container */
    padding: 12px 20px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__contact-section .page-gdpr__btn-secondary {
    margin-left: auto !important;
  }

  .page-gdpr__container,
  .page-gdpr__section,
  .page-gdpr__content-area,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section,
  .page-gdpr__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

  .page-gdpr__list-item {
    padding: 15px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
  }
}