/* style/gdpr.css */

/* Body background is #0D0E12 (dark), so text color should be #FFF3E6 (light) */
.page-gdpr {
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Reset for images, videos, and buttons for mobile responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gdpr video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__cta-button,
.page-gdpr__link-button {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0D0E12;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255,140,26,0.5);
}

.page-gdpr__description-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #ffffff;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  border: none;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,140,26,0.4);
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #0D0E12; /* Background */
}

.page-gdpr__dark-section {
  background-color: #17191F; /* Card BG */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FF8C1A; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255,140,26,0.3);
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #FFA53A; /* Accent Color */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-gdpr__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #FFF3E6; /* Text Main */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

.page-gdpr__card {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  color: #FFF3E6; /* Text Main */
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FFA53A; /* Accent Color */
  margin-bottom: 15px;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-gdpr__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image-block {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #A84F0C;
}

.page-gdpr__text-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #A84F0C;
}

.page-gdpr__link-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #FF8C1A; /* Main Color */
  background-color: #FFF3E6;
  border: 2px solid #FF8C1A;
  transition: all 0.3s ease;
}

.page-gdpr__link-button:hover {
  background-color: #FF8C1A;
  color: #FFF3E6;
}

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

.page-gdpr__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6; /* Text Main */
}

.page-gdpr__faq-item summary {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFA53A; /* Accent Color */
  background-color: #17191F;
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 10px;
  line-height: 1;
}

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: #FFF3E6; /* Text Main */
}

.page-gdpr a {
  color: #FFA53A; /* Accent Color for links */
  text-decoration: underline;
}

.page-gdpr a:hover {
  color: #FFB04D; /* Glow */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__sub-title {
    font-size: 1.5em;
  }
  .page-gdpr__image-text-block {
    flex-direction: column;
  }
  .page-gdpr__image-text-block--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* All images, videos, and buttons must be responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__link-button,
  .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__hero-section,
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__image-text-block,
  .page-gdpr__content-grid,
  .page-gdpr__rights-grid,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

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

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

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

  .page-gdpr__paragraph,
  .page-gdpr__list li,
  .page-gdpr__card p {
    font-size: 0.95em;
  }

  .page-gdpr__content-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    flex-direction: column !important;
    gap: 10px;
  }
}